Rails Girls Events is an app developed to assist in registering and managing attendees for Rails Girls Sydney.
$ bin/setup
Generate a backup
$ heroku pg:backups:capture --app rails-girls-events
Download the latest dump
$ heroku pg:backups:download -a rails-girls-events
Restore the database, change the PG_USERNAME
field to your local config:
$ pg_restore -h localhost -U PG_USERNAME -d rails-girls-events_development --no-owner --clean --verbose --format custom latest.dump
Start the app:
$ bundle exec rails s
Visit http://localhost:3000
Testing is with Capybara and Rspec, run:
$ bundle exec rspec
This task investigates the routes definition, then shows the unused routes and unreachable action methods.
$ rake traceroute
Further information on the usage of the app can be found in the Wiki.
Changelog Generator is installed locally to generate the output file.
Please read our Contributing guidelines before anything else.
- Fork it
- Create your feature branch
$ git checkout -b feature/my-new-feature
- Commit your changes
$ git commit -am 'Added some feature'
- Push to the branch
$ git push origin feature/my-new-feature
- Create new Pull Request