neo4j-admin 0.0.1-java → 0.0.2-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +3 -0
- data/lib/neo4j-admin/railtie.rb +1 -1
- data/neo4j-admin.gemspec +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
data/lib/neo4j-admin/railtie.rb
CHANGED
|
@@ -3,7 +3,7 @@ require 'neo4j-admin'
|
|
|
3
3
|
class Neo4jAdmin < Rails::Railtie
|
|
4
4
|
|
|
5
5
|
config.after_initialize do
|
|
6
|
-
graphdb = Neo4j.
|
|
6
|
+
graphdb = Neo4j.started_db.graph
|
|
7
7
|
srv = org.neo4j.server.WrappingNeoServerBootstrapper.new(graphdb)
|
|
8
8
|
srv.start
|
|
9
9
|
puts "neo4j-admin: Started admin server on port 7474"
|
data/neo4j-admin.gemspec
CHANGED