Install the CI reporter gem for Jenkins test output
group :test do
# For jenkins test output
gem 'ci_reporter'
end
#!/bin/bash
source ~/.bashrc
bundle
read -d '' database_yml <<"EOF"
test:
adapter: postgresql
encoding: unicode
database: wrking_test
user: jenkins
pool: 5
EOF
echo "$database_yml" > config/database.yml
rake db:test:prepare RAILS_ENV=test
rake ci:setup:rspec spec RAILS_ENV=test