Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Update i18n requirement from ~> 0.5 to >= 0.5, < 2.0 #2

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions Gemfile.lock
Expand Up @@ -2,12 +2,14 @@ PATH
remote: .
specs:
faker (1.2.0)
i18n (~> 0.5)
i18n (>= 0.5, < 2.0)

GEM
remote: http://rubygems.org/
specs:
i18n (0.6.5)
concurrent-ruby (1.1.8)
i18n (1.8.9)
concurrent-ruby (~> 1.0)
rake (10.1.0)
test-unit (2.5.5)

Expand Down
2 changes: 1 addition & 1 deletion faker.gemspec
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|

s.rubyforge_project = "faker"

s.add_dependency('i18n', '~> 0.5')
s.add_dependency('i18n', '>= 0.5', '< 2.0')

s.files = `git ls-files -- lib/*`.split("\n") + %w(History.txt License.txt README.md)
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
Expand Down