Skip to content

Commit

Permalink
Upgraded java jars to Neo4j 1.7.0.alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasronge committed Mar 18, 2012
1 parent 8911681 commit 22ede68
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ source :gemcutter

gemspec

gem 'neo4j-advanced', "1.6.0.alpha.8", :require => false
gem 'neo4j-enterprise', "1.6.0.alpha.8", :require => false
gem 'neo4j-advanced', "1.7.0.alpha.1", :require => false
gem 'neo4j-enterprise', "1.7.0.alpha.1", :require => false

group 'development' do
gem 'guard'
Expand Down
2 changes: 0 additions & 2 deletions lib/neo4j/database.rb
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ def start_ha_graph_db
Neo4j.logger.info "starting Neo4j in HA mode, machine id: #{Neo4j.config['ha.server_id']} at #{Neo4j.config['ha.server']} db #{@storage_path}"
# Modify the public base classes for the HA Node and Relationships
# (instead of private org.neo4j.kernel.HighlyAvailableGraphDatabase::LookupNode)
Neo4j::Node.extend_java_class(org.neo4j.tooling.wrap.WrappedNode)
Neo4j::Relationship.extend_java_class(org.neo4j.tooling.wrap.WrappedRelationship)
@graph = org.neo4j.kernel.HighlyAvailableGraphDatabase.new(@storage_path, Neo4j.config.to_java_map)
@graph.register_transaction_event_handler(@event_handler)
@lucene = @graph.index
Expand Down
4 changes: 2 additions & 2 deletions neo4j.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ It comes included with the Apache Lucene document database.

s.add_dependency('orm_adapter', ">= 0.0.3")
s.add_dependency("activemodel", ">= 3.0.0", "< 3.3")
s.add_dependency("railties", ">= 3.0.0")
s.add_dependency("neo4j-community", "1.6.0.alpha.8")
s.add_dependency("railties", ">= 3.0.0", "< 3.3")
s.add_dependency("neo4j-community", "1.7.0.alpha.1")
end

0 comments on commit 22ede68

Please sign in to comment.