A very simple attraction manager.
First do the typical bundle install:
bundle install
Rename config/database.yml.example to config/database.yml.
mv config/database.yml.example config/database.yml
You should provide the username and password of your PostgreSQL database, like the example suggests. After that you should create a role with the LOGIN and CREATEDB permissions. See CREATE_ROLE command.
Last but not least, initialize your database.
rake db:create
rake db:migrate
rake db:seed
Finally, you can start your Rails app :)
rails s
You can run the tests with the basic rspec command:
rspec
See LICENSE