From 596f36cd5efd7c0f75057ad948e5af643ddce17d Mon Sep 17 00:00:00 2001 From: maxdemarzi Date: Sun, 24 Jul 2011 12:22:10 -0700 Subject: [PATCH] clean up file name --- Gemfile.lock | 7 ++----- lib/neography.rb | 1 + lib/neography/index.rb | 13 +++++++++++++ lib/neography/node.rb | 1 + 4 files changed, 17 insertions(+), 5 deletions(-) create mode 100644 lib/neography/index.rb diff --git a/Gemfile.lock b/Gemfile.lock index 56be38f..f7630b3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - neography (0.0.12) + neography (0.0.13) httparty (~> 0.7.3) json @@ -11,10 +11,9 @@ GEM crack (0.1.8) diff-lcs (1.1.2) fakeweb (1.3.0) - httparty (0.7.3) + httparty (0.7.4) crack (= 0.1.8) json (1.4.6) - json (1.4.6-java) net-http-spy (0.2.1) rake (0.8.7) rspec (2.0.1) @@ -34,8 +33,6 @@ PLATFORMS DEPENDENCIES fakeweb (~> 1.3.0) - httparty (~> 0.7.3) - json neography! net-http-spy (~> 0.2.1) rake (~> 0.8.7) diff --git a/lib/neography.rb b/lib/neography.rb index 070e412..b37d851 100644 --- a/lib/neography.rb +++ b/lib/neography.rb @@ -34,6 +34,7 @@ def find_and_require_user_defined_code require 'neography/node_traverser' require 'neography/path_traverser' require 'neography/equal' +require 'neography/index' require 'neography/node' require 'neography/relationship' diff --git a/lib/neography/index.rb b/lib/neography/index.rb new file mode 100644 index 0000000..c45498f --- /dev/null +++ b/lib/neography/index.rb @@ -0,0 +1,13 @@ +module Neography + module Index + + def index + + end + + def find + + end + + end +end \ No newline at end of file diff --git a/lib/neography/node.rb b/lib/neography/node.rb index 3cdcff4..3d42d10 100644 --- a/lib/neography/node.rb +++ b/lib/neography/node.rb @@ -1,5 +1,6 @@ module Neography class Node < PropertyContainer + include Neography::Index include Neography::NodeRelationship include Neography::NodePath include Neography::Equal