jbirdjavi / fe

Form Engine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fe

Build Status

This project rocks and uses MIT-LICENSE.

Development

Testing

Setup the testing db

bundle exec rake setup_db

Run specs:

bundle exec rake spec

Run a specific spec:

ruby -I$GEM_HOME/gems/rspec-core-3.0.2/lib:$GEM_HOME/gems/rspec-support-3.0.2/lib -S -I fe/spec rspec spec/models/fe/element_spec.rb

Example enclosing app

rails new 

install devise

add to gemfile

gem 'devise'

run

bundle install
rails generate devise:install
rails generate devise User

add to gemfile

github: 'CruGlobal/qe', branch: 'fe'

run

bundle exec rake fe_engine:install:migrations

add example user

bundle exec rails console

User.new({ :email => 'user@example.com', :password => 'password', :password_confirmation => 'password'}).save

start server

bundle exec rails server

About

Form Engine

License:MIT License


Languages

Language:Ruby 60.9%Language:HTML 24.2%Language:JavaScript 14.3%Language:CSS 0.7%