Skip to content

Commit

Permalink
Merge pull request #46 from smulube/feature/httparty_update
Browse files Browse the repository at this point in the history
Tweaked Httparty dependency to make gem less fussy
  • Loading branch information
maxdemarzi committed Jun 18, 2012
2 parents e4bd60e + d528234 commit c7b3c3c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
39 changes: 20 additions & 19 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,37 +1,38 @@
PATH
remote: .
specs:
neography (0.0.20)
crack (= 0.1.8)
httparty (= 0.8.1)
neography (0.0.26)
httparty (>= 0.8.1)
json
oj
os
rake (>= 0.8.7)
rubyzip

GEM
remote: http://rubygems.org/
specs:
crack (0.1.8)
diff-lcs (1.1.3)
httparty (0.8.1)
multi_json
httparty (0.8.3)
multi_json (~> 1.0)
multi_xml
json (1.6.4)
multi_json (1.0.4)
multi_xml (0.4.1)
json (1.7.3)
json (1.7.3-java)
multi_json (1.3.6)
multi_xml (0.5.1)
net-http-spy (0.2.1)
os (0.9.5)
oj (1.2.9)
os (0.9.6)
rake (0.8.7)
rspec (2.7.0)
rspec-core (~> 2.7.0)
rspec-expectations (~> 2.7.0)
rspec-mocks (~> 2.7.0)
rspec-core (2.7.1)
rspec-expectations (2.7.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.7.0)
rubyzip (0.9.5)
rspec (2.10.0)
rspec-core (~> 2.10.0)
rspec-expectations (~> 2.10.0)
rspec-mocks (~> 2.10.0)
rspec-core (2.10.1)
rspec-expectations (2.10.0)
diff-lcs (~> 1.1.3)
rspec-mocks (2.10.1)
rubyzip (0.9.8)

PLATFORMS
java
Expand Down
1 change: 0 additions & 1 deletion lib/neography.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ def find_and_require_user_defined_code
DIRECTIONS = ["incoming", "in", "outgoing", "out", "all", "both"]

require 'cgi'
require 'crack'
require 'httparty'
require 'json'
require 'oj'
Expand Down
2 changes: 1 addition & 1 deletion neography.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |s|
s.add_development_dependency "rspec"
s.add_development_dependency "net-http-spy", "0.2.1"
s.add_development_dependency "rake", "~> 0.8.7"
s.add_dependency "httparty", "0.8.1"
s.add_dependency "httparty", ">= 0.8.1"
s.add_dependency "rake", ">= 0.8.7"
s.add_dependency "json"
s.add_dependency "os"
Expand Down

0 comments on commit c7b3c3c

Please sign in to comment.