class Regres
Constants
- VERSION
Attributes
connection[R]
table[R]
Public Class Methods
new(options = {})
click to toggle source
# File lib/regres.rb, line 14 def initialize(options = {}) defaults = { table: 'regres_default' } @options = defaults.merge(options) @connection = Connection.new(@options[:url]) @table = Table.new(@connection, @options[:table]) end