Class: Graphdb::Configuration
- Inherits:
-
Object
- Object
- Graphdb::Configuration
- Includes:
- Model::Extensions
- Defined in:
- lib/graphdb/configuration.rb
Instance Attribute Summary collapse
-
#neo4j_server ⇒ Object
Returns the value of attribute neo4j_server.
Attributes included from Model::Extensions
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Methods included from Model::Extensions
#load_extensions, #unload_extensions
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
8 9 10 11 |
# File 'lib/graphdb/configuration.rb', line 8 def initialize @extensions = [] @neo4j_server = 'http://localhost:7474' end |
Instance Attribute Details
#neo4j_server ⇒ Object
Returns the value of attribute neo4j_server.
6 7 8 |
# File 'lib/graphdb/configuration.rb', line 6 def neo4j_server @neo4j_server end |