module Neography

Constants

VERSION

Public Class Methods

configuration() click to toggle source
# File lib/neography.rb, line 41
def self.configuration
  @configuration ||= Config.new
end
configure() { |configuration| ... } click to toggle source
# File lib/neography.rb, line 37
def self.configure
  yield configuration
end
ref_node(this_db = Neography::Rest.new) click to toggle source
# File lib/neography/neography.rb, line 5
def ref_node(this_db = Neography::Rest.new)
  this_db.get_root
end

Public Instance Methods

to_s() click to toggle source
# File lib/neography/errors.rb, line 15
def to_s
 "NeographyError: \n--message: #{@message}, \n--code: #{@code}, \n--stacktrace: #{@stacktrace}, \n--request: #{@request}, \n--index: #{@index}"
end