module Neo4j::Shared

Public Class Methods

i18n_scope() click to toggle source
   # File lib/neo4j/shared.rb
35 def self.i18n_scope
36   :neo4j
37 end
inherited(other) click to toggle source
Calls superclass method
   # File lib/neo4j/shared.rb
39 def self.inherited(other)
40   attributes.each_pair do |k, v|
41     other.inherit_property k.to_sym, v.clone, declared_properties[k].options
42   end
43   super
44 end

Public Instance Methods

declared_properties() click to toggle source
   # File lib/neo4j/shared.rb
47 def declared_properties
48   self.class.declared_properties
49 end