Skip to content

Commit

Permalink
Increases strictness of explicit i18n dependency
Browse files Browse the repository at this point in the history
i18n v0.6.7 introduces I18n.enforce_available_locales=, which Padrino
depends on. Earlier versions of the i18n gem that are on the 0.6 line
will satisfy the gemspec dependency but will not allow the tests to
pass since the gem lacks that method.
  • Loading branch information
fj authored and Ortuna committed Jan 17, 2014
1 parent 67d91ce commit e2b59e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion padrino-helpers/padrino-helpers.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"]

s.add_dependency("padrino-core", Padrino.version)
s.add_dependency("i18n", "~> 0.6")
s.add_dependency("i18n", "~> 0.6", ">= 0.6.7")
end

0 comments on commit e2b59e2

Please sign in to comment.