Skip to content

Commit

Permalink
try neography at neography.org
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdemarzi committed Dec 10, 2010
1 parent 5fd4f25 commit 6b29ca8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
neography (0.0.5)
neography (0.0.6)
httparty (~> 0.6.1)
json

Expand Down
13 changes: 12 additions & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,23 @@ If you want to the full power of Neo4j, you will want to use JRuby and the excel

gem install 'neography'

After that, in your ruby script, do
After that, in your ruby script:

require 'rubygems'
require 'neography'

in order to access the functionality.

=== Try it now!

I am hosting an instance of Neo4j (1.2 M5) at neography.org for you to try out.

You can see the administration at: {Neo4j Web Admin}[http://neography.org]

# Add this to your ruby file to use it
Neography::Config.server = 'neography.org'


=== Dependencies

for use:
Expand Down
1 change: 1 addition & 0 deletions examples/facebook.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
require 'rubygems'
require 'neography'

Neography::Config.server = 'neography.org'
@neo = Neography::Rest.new

def create_person(name)
Expand Down
1 change: 1 addition & 0 deletions examples/linkedin.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
require 'rubygems'
require 'neography'

Neography::Config.server = 'neography.org'
@neo = Neography::Rest.new

def create_person(name)
Expand Down

0 comments on commit 6b29ca8

Please sign in to comment.