Skip to content

Commit

Permalink
finished changes and incrementing version to 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Deiters authored and Matthew Deiters committed Jan 19, 2010
1 parent 524c513 commit faabbbb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
1 change: 1 addition & 0 deletions lib/neo4jr-simple.rb
Expand Up @@ -30,6 +30,7 @@ module Neo4jr
require 'neo4jr/traverser_extension'
require 'neo4jr/returnable_evaluator'
require 'neo4jr/stop_evaluator'
require 'neo4jr/simple_cost_evaluator'
require 'neo4jr/order'
require 'neo4jr/direction'
require 'neo4jr/cli'
1 change: 0 additions & 1 deletion lib/neo4jr/db.rb
Expand Up @@ -4,7 +4,6 @@ class << self
def instance
@neo ||= begin
neo = EmbeddedNeo.new(Configuration.database_path)
neo.enable_remote_shell if ENV['enable_neo_shell']
at_exit do
neo.shutdown
end
Expand Down
10 changes: 9 additions & 1 deletion neo4jr-simple.gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Matthew Deiters"]
s.date = %q{2010-01-12}
s.date = %q{2010-01-19}
s.default_executable = %q{neosh}
s.description = %q{A simple, ready to go JRuby wrapper for the Neo4j graph database engine. Nothing more then Neo4j and Ruby goodness}
s.email = %q{matthew_deiters@mckinsey.com}
Expand All @@ -21,9 +21,17 @@ Gem::Specification.new do |s|
s.files = [
"VERSION",
"bin/neosh",
"lib/jars/geronimo-jta_1.1_spec-1.1.1.jar",
"lib/jars/graph-algo-0.2-20090815.182816-1.jar",
"lib/jars/jline-0.9.94.jar",
"lib/jars/jta-1.1.jar",
"lib/jars/lucene-core-2.9.1.jar",
"lib/jars/neo-1.0-b10.jar",
"lib/jars/neo4j-commons-0.4.jar",
"lib/jars/neo4j-index-1.0-b1.jar",
"lib/jars/neo4j-kernel-1.0-rc.jar",
"lib/jars/neo4j-remote-graphdb-0.5.jar",
"lib/jars/neo4j-shell-1.0-rc.jar",
"lib/jars/shell-1.0-b10.jar",
"lib/neo4jr-simple.rb",
"lib/neo4jr/cli.rb",
Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
@@ -1,9 +1,9 @@
$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

require 'neo4jr-simple'
require 'spec'
require 'spec/autorun'
require 'neo4jr-simple'

Neo4jr::Configuration.database_path = File.join(File.expand_path(File.dirname(__FILE__)), 'test-imdb-database')

Expand Down

0 comments on commit faabbbb

Please sign in to comment.