Skip to content

Commit

Permalink
Fix Illformed requirement from e77e55d (#398)
Browse files Browse the repository at this point in the history
Otherwise you get this error:
[!] There was an error parsing `Gemfile`:
[!] There was an error while loading `jbuilder.gemspec`: Illformed requirement ["=> 1.2"]. Bundler cannot continue.

 #  from ~/code/jbuilder/jbuilder.gemspec:13
 #  -------------------------------------------
 #    s.add_dependency 'activesupport', '>= 3.0.0'
 >    s.add_dependency 'multi_json',    '=> 1.2'
 #
 #  -------------------------------------------
. Bundler cannot continue.

 #  from ~/code/jbuilder/Gemfile:3
 #  -------------------------------------------
 #
 >  gemspec
 #
 #  -------------------------------------------
  • Loading branch information
claudiob authored and dhh committed May 9, 2017
1 parent e77e55d commit 1a3add9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jbuilder.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 1.9.3'

s.add_dependency 'activesupport', '>= 3.0.0'
s.add_dependency 'multi_json', '=> 1.2'
s.add_dependency 'multi_json', '>= 1.2'

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
Expand Down

0 comments on commit 1a3add9

Please sign in to comment.