martinisoft/funnies

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: ruby
rvm:
  - 1.9.3-p327
env: "RAILS_ENV=test"
before_script:
  - psql -c 'CREATE DATABASE funnies_test;' -U postgres
  - cp config/database.example.yml config/database.yml
  - cp config/application.example.yml config/application.yml
  - bundle exec rake db:schema:load
  - bundle exec rake db:test:prepare
script:
  - bundle exec rspec --format Fivemat