From d217171f43932d73dda9113bf7eeb45384e4faf1 Mon Sep 17 00:00:00 2001 From: Dan Schepers Date: Tue, 1 Nov 2016 12:12:51 -0500 Subject: [PATCH] update multi json to reflect the dependencies of cucumber --- Gemfile.lock | 6 +++--- cucumber_lint.gemspec | 2 +- lib/cucumber_lint/version.rb | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index d4c97c9..00c14a0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,10 +1,10 @@ PATH remote: . specs: - cucumber_lint (0.1.2) + cucumber_lint (0.1.3) colorize (~> 0.7.7) gherkin (~> 2.12.2) - multi_json (~> 1.11.2) + multi_json (>= 1.7.5, < 2.0) GEM remote: http://rubygems.org/ @@ -80,4 +80,4 @@ DEPENDENCIES rubocop BUNDLED WITH - 1.10.6 + 1.11.2 diff --git a/cucumber_lint.gemspec b/cucumber_lint.gemspec index 65e046f..4a11c91 100644 --- a/cucumber_lint.gemspec +++ b/cucumber_lint.gemspec @@ -14,7 +14,7 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency 'colorize', '~> 0.7.7' spec.add_runtime_dependency 'gherkin', '~> 2.12.2' - spec.add_runtime_dependency 'multi_json', '~> 1.11.2' + spec.add_runtime_dependency 'multi_json', '< 2.0', '>= 1.7.5' spec.files = `git ls-files`.split("\n") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } diff --git a/lib/cucumber_lint/version.rb b/lib/cucumber_lint/version.rb index 5383632..65c9c5e 100644 --- a/lib/cucumber_lint/version.rb +++ b/lib/cucumber_lint/version.rb @@ -1,3 +1,3 @@ module CucumberLint # rubocop:disable Style/Documentation - VERSION = '0.1.2' + VERSION = '0.1.3' end