Skip to content

Commit

Permalink
chore: lock some gems by ruby version
Browse files Browse the repository at this point in the history
  • Loading branch information
TamarinEA committed Oct 1, 2019
1 parent 0118011 commit e2c3b20
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ gemspec

gem 'pg', '< 1.0.0'

if RUBY_VERSION < '2.3'
gem 'nokogiri', '< 1.10.0', require: false
gem 'pry-byebug', '< 3.7.0', require: false
gem 'public_suffix', '< 3.1.0', require: false
gem 'redis', '< 4.1.2', require: false
gem 'oj', '< 3.8.0', require: false
end

if RUBY_VERSION < '2.4'
gem 'mock_redis', '< 0.20.0'
gem 'mock_redis', '< 0.20.0', require: false
gem 'shoulda-matchers', '< 4.1.0', require: false
end

0 comments on commit e2c3b20

Please sign in to comment.