Skip to content

Commit

Permalink
Lock i18n version range
Browse files Browse the repository at this point in the history
This gem just released version 1.3.0 a few hours ago, which broke jruby tests against Rails 5.0+. It appears to be a change related to this commit: ruby-i18n/i18n@949dc64 . Regardless, activemodel works fine with any version above 0.7.
  • Loading branch information
garettarrowood committed Dec 20, 2018
1 parent a7d6203 commit 4398f62
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modis.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ Gem::Specification.new do |gem|

gem.required_ruby_version = ">= 2.3.0"

gem.add_runtime_dependency 'activemodel', ['>= 4.2']
gem.add_runtime_dependency 'activesupport', ['>= 4.2']
gem.add_runtime_dependency 'activemodel', '>= 4.2'
gem.add_runtime_dependency 'activesupport', '>= 4.2'
gem.add_runtime_dependency 'i18n', ['>= 0.7', '~> 1.2.0']
gem.add_runtime_dependency 'redis', '>= 3.0'
gem.add_runtime_dependency 'hiredis', '>= 0.5'
gem.add_runtime_dependency 'connection_pool', '>= 2'
Expand Down

0 comments on commit 4398f62

Please sign in to comment.