2016-03-18 22:23:19 +00:00
|
|
|
language: ruby
|
|
|
|
cache: bundler
|
|
|
|
|
2016-03-18 22:31:07 +00:00
|
|
|
env:
|
|
|
|
global:
|
2016-03-21 07:41:00 +00:00
|
|
|
- LOCAL_DOMAIN=cb6e6126.ngrok.io
|
|
|
|
- LOCAL_HTTPS=true
|
|
|
|
- RAILS_ENV=test
|
2016-03-18 22:31:07 +00:00
|
|
|
|
|
|
|
addons:
|
|
|
|
postgresql: 9.4
|
|
|
|
|
2016-03-18 22:23:19 +00:00
|
|
|
rvm:
|
|
|
|
- 2.2.4
|
|
|
|
|
2016-03-18 22:31:07 +00:00
|
|
|
services:
|
|
|
|
- redis-server
|
|
|
|
|
2016-08-24 17:06:54 +00:00
|
|
|
bundler_args: --without development production --retry=3 --jobs=3
|
|
|
|
|
2016-09-03 12:02:24 +00:00
|
|
|
install:
|
|
|
|
- npm install -g npm@2
|
2016-09-03 12:20:59 +00:00
|
|
|
- npm install
|
|
|
|
- bundle install
|
2016-09-03 12:02:24 +00:00
|
|
|
|
2016-03-18 22:31:07 +00:00
|
|
|
before_script:
|
2016-09-03 12:20:59 +00:00
|
|
|
- bundle exec rails db:create db:migrate
|
2016-03-18 22:31:07 +00:00
|
|
|
|
2016-03-18 22:23:19 +00:00
|
|
|
script: bundle exec rspec
|