module Ashikawa::Core

Ashikawa::Core is a wrapper around the ArangoDB REST interface

Constants

ARANGODB_MAJOR_VERSION

The lowest supported ArangoDB major version

ARANGODB_MINOR_VERSION

The lowest supported ArangoDB minor version

VERSION

Current version of Ashikawa::Core

Public Class Methods

api_compatibility_version() click to toggle source
# File lib/ashikawa-core/version.rb, line 12
def self.api_compatibility_version
  (ARANGODB_MAJOR_VERSION * 10_000 + ARANGODB_MINOR_VERSION * 100).to_s
end