Skip to content

Commit

Permalink
Merge pull request #141 from rails/update-build-matrix
Browse files Browse the repository at this point in the history
Lock sqlite3 to ~> 1.3.6 on Rails <= 2.5.2, and update Travis build matrix
  • Loading branch information
sikachu authored Feb 25, 2019
2 parents bd7174c + 562538a commit 43dacb2
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 11 deletions.
27 changes: 17 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
gemfile:
- gemfiles/rails_4.0.gemfile
Expand All @@ -22,15 +23,19 @@ gemfile:
matrix:
fast_finish: true
exclude:
- rvm: 2.4.3
- rvm: 2.4.5
gemfile: gemfiles/rails_4.0.gemfile
- rvm: 2.5.0
- rvm: 2.5.3
gemfile: gemfiles/rails_4.0.gemfile
- rvm: 2.6.1
gemfile: gemfiles/rails_4.0.gemfile
- rvm: ruby-head
gemfile: gemfiles/rails_4.0.gemfile
- rvm: 2.4.3
- rvm: 2.4.5
gemfile: gemfiles/rails_4.1.gemfile
- rvm: 2.5.3
gemfile: gemfiles/rails_4.1.gemfile
- rvm: 2.5.0
- rvm: 2.6.1
gemfile: gemfiles/rails_4.1.gemfile
- rvm: ruby-head
gemfile: gemfiles/rails_4.1.gemfile
Expand Down Expand Up @@ -58,9 +63,11 @@ matrix:
gemfile: gemfiles/rails_edge.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_edge.gemfile
- rvm: 2.2.9
- rvm: 2.2.10
gemfile: gemfiles/rails_edge.gemfile
- rvm: 2.3.8
gemfile: gemfiles/rails_edge.gemfile
- rvm: 2.3.6
- rvm: 2.4.5
gemfile: gemfiles/rails_edge.gemfile
allow_failures:
- rvm: ruby-head
Expand Down
1 change: 0 additions & 1 deletion activerecord-session_store.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,4 @@ Gem::Specification.new do |s|
s.add_dependency('multi_json', '~> 1.11', '>= 1.11.2')

s.add_development_dependency('sqlite3')
s.add_development_dependency('appraisal', '~> 2.1.0')
end
1 change: 1 addition & 0 deletions gemfiles/rails_4.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ gem "actionpack", "~> 4.0.0"
gem "activerecord", "~> 4.0.0"
gem "railties", "~> 4.0.0"
gem 'nokogiri', "~> #{nokogiri_ver}.0"
gem "sqlite3", "~> 1.3.6"

gemspec :path => "../"
1 change: 1 addition & 0 deletions gemfiles/rails_4.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ gem "actionpack", "~> 4.1.0"
gem "activerecord", "~> 4.1.0"
gem "railties", "~> 4.1.0"
gem 'nokogiri', "~> #{nokogiri_ver}.0"
gem "sqlite3", "~> 1.3.6"

gemspec :path => "../"
1 change: 1 addition & 0 deletions gemfiles/rails_4.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ gem "actionpack", "~> 4.2.0"
gem "activerecord", "~> 4.2.0"
gem "railties", "~> 4.2.0"
gem 'nokogiri', "~> #{nokogiri_ver}.0"
gem "sqlite3", "~> 1.3.6"

gemspec :path => "../"
1 change: 1 addition & 0 deletions gemfiles/rails_5.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ source "https://rubygems.org"
gem "actionpack", "~> 5.0.0"
gem "activerecord", "~> 5.0.0"
gem "railties", "~> 5.0.0"
gem "sqlite3", "~> 1.3.6"

gemspec :path => "../"
1 change: 1 addition & 0 deletions gemfiles/rails_5.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ source "https://rubygems.org"
gem "actionpack", "~> 5.1.0"
gem "activerecord", "~> 5.1.0"
gem "railties", "~> 5.1.0"
gem "sqlite3", "~> 1.3.6"

gemspec :path => "../"

0 comments on commit 43dacb2

Please sign in to comment.