Sha256: 684da0dbee5971d060086915642e0c5514bf520fa5cf775442aecd6891aadae4
Contents?: true
Size: 288 Bytes
Versions: 1
Compression:
Stored size: 288 Bytes
Contents
module Arison class Connection def initialize(config: DEFAULT_CONFIG_FILE_PATH, profile: DEFAULT_CONFIG_PROFILE) profile = Util.get_profile(config, profile) @core = Core.new(profile) end def import(table, data) @core.import(table, data) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
arison-0.2.0 | lib/arison/connection.rb |