Skip to content

Commit

Permalink
Specify 'sqlite3' gem version
Browse files Browse the repository at this point in the history
  • Loading branch information
lucascaton committed May 22, 2019
1 parent c7b1a97 commit 90e0997
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ rails_versions = JSON.parse(Net::HTTP.get(URI('https://rubygems.org/api/v1/versi
gem 'activesupport', "~> #{current_version}"
gem 'activerecord', "~> #{current_version}"

gem 'sqlite3'
gem 'sqlite3', Gem::Version.new(version) > Gem::Version.new(5.0) ? '~> 1.4.1' : '< 1.4'
end
end
2 changes: 1 addition & 1 deletion gemfiles/rails_4.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source 'https://rubygems.org'

gem 'activerecord', '~> 4.0.13'
gem 'activesupport', '~> 4.0.13'
gem 'sqlite3'
gem 'sqlite3', '< 1.4'

gemspec path: '../'
2 changes: 1 addition & 1 deletion gemfiles/rails_4.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source 'https://rubygems.org'

gem 'activerecord', '~> 4.1.16'
gem 'activesupport', '~> 4.1.16'
gem 'sqlite3'
gem 'sqlite3', '< 1.4'

gemspec path: '../'
2 changes: 1 addition & 1 deletion gemfiles/rails_4.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source 'https://rubygems.org'

gem 'activerecord', '~> 4.2.11.1'
gem 'activesupport', '~> 4.2.11.1'
gem 'sqlite3'
gem 'sqlite3', '< 1.4'

gemspec path: '../'
2 changes: 1 addition & 1 deletion gemfiles/rails_5.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source 'https://rubygems.org'

gem 'activerecord', '~> 5.0.7.2'
gem 'activesupport', '~> 5.0.7.2'
gem 'sqlite3'
gem 'sqlite3', '< 1.4'

gemspec path: '../'
2 changes: 1 addition & 1 deletion gemfiles/rails_5.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source 'https://rubygems.org'

gem 'activerecord', '~> 5.1.7'
gem 'activesupport', '~> 5.1.7'
gem 'sqlite3'
gem 'sqlite3', '~> 1.4.1'

gemspec path: '../'
2 changes: 1 addition & 1 deletion gemfiles/rails_5.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source 'https://rubygems.org'

gem 'activerecord', '~> 5.2.3'
gem 'activesupport', '~> 5.2.3'
gem 'sqlite3'
gem 'sqlite3', '~> 1.4.1'

gemspec path: '../'

0 comments on commit 90e0997

Please sign in to comment.