Skip to content

Commit

Permalink
Require Ruby I18n 1.18.11 or higher
Browse files Browse the repository at this point in the history
Resolves faker-ruby#2330.

This PR makes Faker require Ruby I18n 1.18.11 or higher to
resolve faker-ruby#2330.
  • Loading branch information
koic committed Nov 3, 2021
1 parent 5852621 commit fddac42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion faker.gemspec
Expand Up @@ -27,7 +27,8 @@ Gem::Specification.new do |spec|
spec.metadata['documentation_uri'] = 'https://rubydoc.info/github/faker-ruby/faker/master'
spec.metadata['yard.run'] = 'yri'

spec.add_dependency('i18n', '>= 1.6', '< 2')
# Requires Ruby I18n 1.18.11 or higher to resolve https://github.com/faker-ruby/faker/issues/2330.
spec.add_dependency('i18n', '>= 1.18.11', '< 2')

spec.add_development_dependency('minitest', '5.14.4')
spec.add_development_dependency('pry', '0.14.1')
Expand Down

0 comments on commit fddac42

Please sign in to comment.