module Arison

Constants

DEFAULT_CONFIG_FILE_PATH
DEFAULT_CONFIG_PROFILE
VERSION

arison version

Public Class Methods

import(table, data, config: DEFAULT_CONFIG_FILE_PATH, profile: DEFAULT_CONFIG_PROFILE) click to toggle source
# File lib/arison.rb, line 10
def self.import(table, data, config: DEFAULT_CONFIG_FILE_PATH, profile: DEFAULT_CONFIG_PROFILE)
  con = Connection.new(config: config, profile: profile)
  con.import(table, data)
end