leon

Version, currently master branch1 version
  • master branchlatestMay 1, 2021

github.com/vrishtrix/Leon

ArangoDB ORM, Client and Driver for the Crystal Language.

2 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  leon:
    github: vrishtrix/Leon
    branch: master

master is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
>= 0.36.1, < 2.0.0
License
MIT
Author
Chiru Boggavarapu
Target
  • leon from source/leon.cr

Dependencies

Runtime Dependencies

  • halite*github: icyleaf/halite
  • active-model*github: spider-gazelle/active-model, branch: master

README

Leon

Leon is an open source ArangoDB Client driver and ORM for the Crystal Language.

Requirements

  • Crystal Language 0.35.0
  • ArangoDB 3.4 or Higher

Installation

dependencies:
	leon:
		github: ForetagInc/Leon

Usage

require "leon"

client = Leon::Client.new("http://localhost:8529", "root", "")
database = client.database("database")

# Async (https://www.arangodb.com/docs/stable/http/async-results-management.html)
client.async = true