module Epiphy::Connection

Public Class Methods

create(opts = {}) click to toggle source

Create a RethinkDB connection.

@param Hash [host, port, db, auth] @return RethinkDB::Connection a connection to RethinkDB

@api public @since 0.0.1

# File lib/epiphy/connection.rb, line 12
def self.create(opts = {})
  r.connect opts  
end