Skip to content

Commit

Permalink
fixed name of yajl-ruby dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
drnic committed May 31, 2010
1 parent 5e5ff69 commit 5b2a192
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |s|
manifest.exclude "tmp", "**/*.gem"
end.to_a
s.add_dependency("term-ansicolor", [">= 1.0.4"])
s.add_dependency("yajl", [">= 0.7.6"])
s.add_dependency("yajl-ruby", [">= 0.7.6"])
s.add_dependency("httparty", ["~> 0.5.2"])
s.add_dependency("builder", ["~> 2.1.2"])
s.add_development_dependency("cucumber", ["~> 0.7.3"])
Expand Down
8 changes: 4 additions & 4 deletions hudson.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Charles Lowell", "Dr Nic Williams"]
s.date = %q{2010-05-31}
s.date = %q{2010-06-01}
s.default_executable = %q{hudson}
s.description = %q{A suite of utilities for bringing continous integration to your projects (not the other way around) with hudson CI}
s.email = ["cowboyd@thefrontside.net", "drnicwilliams@gmail.com"]
Expand All @@ -24,22 +24,22 @@ Gem::Specification.new do |s|

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<term-ansicolor>, [">= 1.0.4"])
s.add_runtime_dependency(%q<yajl>, [">= 0.7.6"])
s.add_runtime_dependency(%q<yajl-ruby>, [">= 0.7.6"])
s.add_runtime_dependency(%q<httparty>, ["~> 0.5.2"])
s.add_runtime_dependency(%q<builder>, ["~> 2.1.2"])
s.add_development_dependency(%q<cucumber>, ["~> 0.7.3"])
s.add_development_dependency(%q<rspec>, ["~> 1.3.0"])
else
s.add_dependency(%q<term-ansicolor>, [">= 1.0.4"])
s.add_dependency(%q<yajl>, [">= 0.7.6"])
s.add_dependency(%q<yajl-ruby>, [">= 0.7.6"])
s.add_dependency(%q<httparty>, ["~> 0.5.2"])
s.add_dependency(%q<builder>, ["~> 2.1.2"])
s.add_dependency(%q<cucumber>, ["~> 0.7.3"])
s.add_dependency(%q<rspec>, ["~> 1.3.0"])
end
else
s.add_dependency(%q<term-ansicolor>, [">= 1.0.4"])
s.add_dependency(%q<yajl>, [">= 0.7.6"])
s.add_dependency(%q<yajl-ruby>, [">= 0.7.6"])
s.add_dependency(%q<httparty>, ["~> 0.5.2"])
s.add_dependency(%q<builder>, ["~> 2.1.2"])
s.add_dependency(%q<cucumber>, ["~> 0.7.3"])
Expand Down

0 comments on commit 5b2a192

Please sign in to comment.