Skip to content

Commit 913ea78

Browse files
committed
Update .travis.yml
bump ruby and rails versions
1 parent 859d94e commit 913ea78

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.travis.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
script: bundle exec rspec spec
22
env:
33
matrix:
4-
- RAILS=5.0.0
5-
- RAILS=5.1.0
4+
- RAILS=5.1.6.2
5+
- RAILS=5.2.2.1
66
rvm:
7-
- 2.2.5
8-
- 2.3.1
7+
- 2.3.8
8+
- 2.4.5
9+
- 2.5.5

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ group :test do
1111
gem 'rails', rails_version
1212
gem 'rspec-rails'
1313
gem 'coveralls', require: false # Test coverage website. Go to https://coveralls.io
14-
gem 'sqlite3'
14+
gem 'sqlite3',"~> 1.3.6"
1515
gem 'launchy'
1616
gem 'database_cleaner'
1717
gem 'capybara'

tasks/test.rake

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ desc 'Creates a test rails app for the specs to run against'
33
task :setup do
44
require 'rails/version'
55
system('mkdir spec/rails') unless File.exist?('spec/rails')
6-
system "bundle exec rails new spec/rails/rails-#{Rails::VERSION::STRING} -m spec/support/rails_template.rb --skip-spring --skip-turbolinks"
6+
system "bundle exec rails new spec/rails/rails-#{Rails::VERSION::STRING} -m spec/support/rails_template.rb --skip-spring --skip-turbolinks --skip-bootsnap"
77
end

0 commit comments

Comments
 (0)