-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
93e4fbd
commit e01369f
Showing
9 changed files
with
22 additions
and
256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |s| | |
s.authors = "Max De Marzi" | ||
s.email = "[email protected]" | ||
s.homepage = "http://rubygems.org/gems/neography" | ||
s.summary = "ruby wrapper to Neo4j Rest Interface" | ||
s.description = "A Ruby wrapper to the Neo4j Rest Client Interface see http://components.neo4j.org/neo4j-rest/ for more details." | ||
s.summary = "ruby wrapper to Neo4j Rest API" | ||
s.description = "A Ruby wrapper to the Neo4j Rest API see http://components.neo4j.org/neo4j-rest/ for more details." | ||
|
||
s.rubyforge_project = "neography" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FakeWeb.register_uri(:get, "http://localhost:9999/", :body => '{ | ||
"index" : "http://localhost:9999/index", | ||
"node" : "http://localhost:9999/node", | ||
"reference_node" : "http://localhost:9999/node/0" | ||
FakeWeb.register_uri(:get, "http://localhost:7474/", :body => '{ | ||
"index" : "http://localhost:7474/index", | ||
"node" : "http://localhost:7474/node", | ||
"reference_node" : "http://localhost:7474/node/0" | ||
}') |