File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
script : bundle exec rspec spec
2
2
env :
3
3
matrix :
4
- - RAILS=5.0.0
5
- - RAILS=5.1.0
4
+ - RAILS=5.1.6.2
5
+ - RAILS=5.2.2.1
6
6
rvm :
7
- - 2.2.5
8
- - 2.3.1
7
+ - 2.3.8
8
+ - 2.4.5
9
+ - 2.5.5
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ group :test do
11
11
gem 'rails' , rails_version
12
12
gem 'rspec-rails'
13
13
gem 'coveralls' , require : false # Test coverage website. Go to https://coveralls.io
14
- gem 'sqlite3'
14
+ gem 'sqlite3' , "~> 1.3.6"
15
15
gem 'launchy'
16
16
gem 'database_cleaner'
17
17
gem 'capybara'
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ desc 'Creates a test rails app for the specs to run against'
3
3
task :setup do
4
4
require 'rails/version'
5
5
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 "
7
7
end
You can’t perform that action at this time.
0 commit comments