Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update multi json to reflect the dependencies of cucumber #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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/
Expand Down Expand Up @@ -80,4 +80,4 @@ DEPENDENCIES
rubocop

BUNDLED WITH
1.10.6
1.11.2
2 changes: 1 addition & 1 deletion cucumber_lint.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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) }
Expand Down
2 changes: 1 addition & 1 deletion lib/cucumber_lint/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module CucumberLint # rubocop:disable Style/Documentation
VERSION = '0.1.2'
VERSION = '0.1.3'
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please revert this change. It will be updated during a release

end