Skip to content

Commit 1a3add9

Browse files
claudiobDavid Heinemeier Hansson
authored andcommitted
Fix Illformed requirement from e77e55d (#398)
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 # # -------------------------------------------
1 parent e77e55d commit 1a3add9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jbuilder.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
1010
s.required_ruby_version = '>= 1.9.3'
1111

1212
s.add_dependency 'activesupport', '>= 3.0.0'
13-
s.add_dependency 'multi_json', '=> 1.2'
13+
s.add_dependency 'multi_json', '>= 1.2'
1414

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

0 commit comments

Comments
 (0)