Our new site.
You'll need RVM to isolate your development environment.
Make sure you install Ruby 2.0.0
on your RVM.
Then just checkout the code, configure dependencies and run the tests:
- Clone the repository:
git clone git://github.com/engageis/engage.is.git
- Enter the repo directory to create the gemset:
cd engage.is
gem install bundler
- Install all dependencies from Gemspec:
bundler install
- Configure the database conection
cp config/database.sample.yml config/database.yml
- Create the databases
bundle exec rake db:create
- Create the tables
bundle exec rake db:migrate
- Start the server
bundle exec rails s
-
Go to app folder
cd engage.is
-
Prepare the database
bundle exec rake db:test:prepare
-
Run the rspec
rspec spec/
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Copyright (c) 2013 Engage
Licensed under the MIT license (see LICENSE file)