Skip to content

Commit

Permalink
get rid of double dependency error
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdemarzi committed Dec 31, 2013
1 parent 7755ecc commit e4e3e87
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions neography.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,17 @@ Gem::Specification.new do |s|

s.add_development_dependency "rspec", ">= 2.11"
s.add_development_dependency "net-http-spy", "0.2.1"
s.add_development_dependency "rake", ">= 0.8.7"
s.add_development_dependency "coveralls"
s.add_dependency "httpclient", ">= 2.3.3"
s.add_dependency "rake", ">= 0.8.7"
s.add_dependency "json", ">= 1.7.7"
s.add_dependency "os", ">= 0.9.6"
s.add_dependency "rubyzip", ">= 1.0.0"
s.add_dependency "multi_json", ">= 1.3.2"

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency 'rake', '>= 0.8.7'
else
s.add_development_dependency "rake", ">= 0.8.7"
s.add_dependency "rake", ">= 0.8.7"
end
end

0 comments on commit e4e3e87

Please sign in to comment.