Giter Site home page Giter Site logo

lodestone / ashikawa-core Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ettomatic/ashikawa-core

0.0 2.0 0.0 1.27 MB

UNMAINTAINED: ArangoDB Ruby Client

Home Page: http://triagens.github.io/ashikawa-core

License: Apache License 2.0

Ruby 99.25% Shell 0.75%

ashikawa-core's Introduction

Ashikawa Core

This gem is not maintained. If you want to take over the project, please contact [email protected]

Project Ashikawa::Core
Homepage http://triagens.github.io/ashikawa-core/
Documentation RubyDoc
CI Build Status
Code Metrics Code Climate Code Climate Coverage
Inline docs Inline docs
Gem Version Gem Version
Dependencies Dependency Status

Ashikawa Core is a Wrapper around the ArangoDB Rest API. It provides low level access and is intended to be used in ArangoDB ODMs and other projects related to the database. It is always working with the stable version of ArangoDB, this is currently version 2.4.

All tests run on Travis CI for the following versions of Ruby:

  • MRI 1.9.3, 2.1.5 and 2.2.0
  • JRuby 1.7.12

How to install it?

gem install ashikawa-core

or, when using bundler:

gem "ashikawa-core"

How to Setup a Connection?

We want to provide you with as much flexibility as possible. So you can choose which adapter to use for HTTP (choose from the adapters available for Faraday) and what you want to use for logging (basically anything that has an info method that takes a String). It defaults to Net::HTTP and no logging:

database = Ashikawa::Core::Database.new do |config|
  config.url = "http://localhost:8529"
end

If you want to access the my_db database of your ArangoDB instance (and not the _system database) and connect as a certain user, do the following:

database = Ashikawa::Core::Database.new do |config|
  config.url = "http://localhost:8529"
  configl.database_name = 'my_db'
  config.username = "lebowski"
  config.password = "i<3bowling"
end

But you could for example use Typhoeus for HTTP and yell for logging:

require "typhoeus"
require "yell"

logger = Yell.new(STDOUT)

database = Ashikawa::Core::Database.new do |config|
  config.url = "http://localhost:8529"
  config.adapter = :typhoeus
  config.logger = logger
end

For a detailed description on how to use Ashikawa::Core please refer to the documentation. An example:

database["my_collection"] # => Returns the collection my_collection – creates it, if it doesn't exist
database["my_collection"].name = "new_name"
database["new_name"].delete

Issues or Questions

If you find a bug in this gem, please report it on our tracker. If you have a question, just contact us via the mailing list – we are happy to help you 😄

Contributing

If you want to contribute to the project, see CONTRIBUTING.md for details. It contains information on our process and how to set up everything. The following people have contributed to this project:

ashikawa-core's People

Contributors

code-later avatar moonglum avatar sleepycat avatar ujjwalt avatar rrrene avatar toch avatar ettomatic avatar fceller avatar sharpyfox avatar rodeoclash avatar

Watchers

Matt Petty avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.