Pile Jockey, Rails 5.2 Edition

Circle CI

Ruby 2.6 and Rails 5.2, spec'd out with RSpec 3.

Environment Variables

The stock .env file includes the basics. You should create local .env.local and .env.test files, that include real values.

cp .env .env.local
vim .env.local

Running Specs

RSpec files exist in spec/

bundle exec rake spec

Code Coverage

You can skip the simplecov code coverage by using the SKIP_COVERAGE environment variable.

SKIP_COVERAGE=true bundle exec rake spec