Skip to content

Commit

Permalink
Travis: Fix using gem "sqlite3" in older Rails
Browse files Browse the repository at this point in the history
  • Loading branch information
ledermann committed Mar 29, 2019
1 parent 621f30b commit 0fc0d22
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions ci/Gemfile-rails-3-1
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
source 'https://rubygems.org'

gem 'activerecord', '~> 3.1.12'
gem 'sqlite3', '~> 1.3.4'

gemspec :path => "../"
1 change: 1 addition & 0 deletions ci/Gemfile-rails-3-2
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
source 'https://rubygems.org'

gem 'activerecord', '~> 3.2.22'
gem 'sqlite3', '~> 1.3.5'

gemspec :path => "../"
1 change: 1 addition & 0 deletions ci/Gemfile-rails-4-0
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ source 'https://rubygems.org'

gem 'activerecord', '~> 4.0.13'
gem 'protected_attributes' if ENV['PROTECTED_ATTRIBUTES'] == 'true'
gem 'sqlite3', '~> 1.3.6'

gemspec :path => "../"
3 changes: 2 additions & 1 deletion ci/Gemfile-rails-4-1
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
source 'https://rubygems.org'

gem 'activerecord', '~> 4.1.10'
gem 'activerecord', '~> 4.1.16'
gem 'protected_attributes' if ENV['PROTECTED_ATTRIBUTES'] == 'true'
gem 'sqlite3', '~> 1.3.6'

gemspec :path => "../"
3 changes: 2 additions & 1 deletion ci/Gemfile-rails-4-2
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
source 'https://rubygems.org'

gem 'activerecord', '~> 4.2.1'
gem 'activerecord', '~> 4.2.11'
gem 'protected_attributes' if ENV['PROTECTED_ATTRIBUTES'] == 'true'
gem 'sqlite3', '~> 1.3.6'

gemspec :path => "../"
3 changes: 2 additions & 1 deletion ci/Gemfile-rails-5-0
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
source 'https://rubygems.org'

gem 'activerecord', '~> 5.0.0'
gem 'activerecord', '~> 5.0.7'
gem 'sqlite3', '~> 1.3.6'

gemspec :path => "../"
3 changes: 2 additions & 1 deletion ci/Gemfile-rails-5-1
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
source 'https://rubygems.org'

gem 'activerecord', '~> 5.1.0'
gem 'activerecord', '~> 5.1.7'
gem "sqlite3", "~> 1.3", ">= 1.3.6"

gemspec :path => "../"
3 changes: 2 additions & 1 deletion ci/Gemfile-rails-5-2
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
source 'https://rubygems.org'

gem 'activerecord', '~> 5.2.0.rc1'
gem 'activerecord', '~> 5.2.3'
gem "sqlite3", "~> 1.3", ">= 1.3.6"

gemspec :path => "../"

0 comments on commit 0fc0d22

Please sign in to comment.