RSonRails 2013
Make sure you have installed Ruby 2.0.0
.
Then just checkout the code, configure dependencies and run the tests:
- Clone the repository:
git clone git://github.com/engageis/RSonRails.git
- Install Bundler
gem install bundler
- Install all dependencies from Gemspec:
bundler install
- Configure the database connection
cp config/database.sample.yml config/database.yml
- Create database and talbes
bundle exec rake db:create db:migrate db:seed
-
Prepare the database
bundle exec rake db:test:prepare
-
Run the rspec
bundle exec 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
Licensed under the MIT license (see MIT-LICENSE file)