From 32654d736a1ab9338fb80e461e6b8112ea5b79e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Jun 2022 22:18:20 +0000 Subject: [PATCH] Update i18n requirement from ~> 0.6.0 to >= 0.6, < 1.11 Updates the requirements on [i18n](https://github.com/ruby-i18n/i18n) to permit the latest version. - [Release notes](https://github.com/ruby-i18n/i18n/releases) - [Changelog](https://github.com/ruby-i18n/i18n/blob/master/CHANGELOG.md) - [Commits](https://github.com/ruby-i18n/i18n/compare/v0.6.0...v1.10.0) --- updated-dependencies: - dependency-name: i18n dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 21 ++++++++++++++++----- whm_xml.gemspec | 2 +- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index d13c88e..d68b830 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -4,20 +4,28 @@ PATH whm_xml (0.3.3) activesupport (>= 2.3.2) curb (>= 0.3.2) - i18n (~> 0.6.0) + i18n (>= 0.6, < 1.11) validatable (>= 1.6.7) xml-simple (>= 1.0.12) GEM remote: http://rubygems.org/ specs: - activesupport (3.0.7) - curb (0.7.15) + activesupport (7.0.3) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + concurrent-ruby (1.1.10) + curb (1.0.1) diff-lcs (1.1.2) - i18n (0.6.0) + i18n (1.10.0) + concurrent-ruby (~> 1.0) + minitest (5.16.0) mocha (0.9.12) rake (0.9.2.2) rdoc (3.6.1) + rexml (3.2.5) rspec (2.6.0) rspec-core (~> 2.6.0) rspec-expectations (~> 2.6.0) @@ -26,8 +34,11 @@ GEM rspec-expectations (2.6.0) diff-lcs (~> 1.1.2) rspec-mocks (2.6.0) + tzinfo (2.0.4) + concurrent-ruby (~> 1.0) validatable (1.6.7) - xml-simple (1.0.16) + xml-simple (1.1.9) + rexml PLATFORMS ruby diff --git a/whm_xml.gemspec b/whm_xml.gemspec index 2d8bb0e..6422130 100644 --- a/whm_xml.gemspec +++ b/whm_xml.gemspec @@ -18,7 +18,7 @@ Gem::Specification.new do |s| s.add_dependency('activesupport', [">= 2.3.2"]) s.add_dependency('curb', [">= 0.3.2"]) s.add_dependency('validatable', [">= 1.6.7"]) - s.add_dependency('i18n',["~> 0.6.0"]) + s.add_dependency('i18n',">= 0.6", "< 1.11") s.add_development_dependency('rspec',["~> 2.6.0"]) s.add_development_dependency('mocha', ["~> 0.9.12"])