Sha256: 53d9eeadb7ba18736c353c3e39659ec85f807266d91388cd16abdb0e696b057d
Contents?: true
Size: 773 Bytes
Versions: 2
Compression:
Stored size: 773 Bytes
Contents
# frozen_string_literal: true require 'table_saw/configuration' require 'table_saw/connection' require 'table_saw/dependency_graph' require 'table_saw/information_schema' require 'table_saw/manifest' require 'table_saw/queries' require 'table_saw/formats' require 'table_saw/variable_interpolation' module TableSaw def self.configuration @configuration ||= TableSaw::Configuration.new end def self.configure(args = {}) if block_given? yield configuration else args.each do |key, value| configuration.public_send("#{key}=", value) end end end def self.information_schema @information_schema ||= TableSaw::InformationSchema.new end def self.schema_cache TableSaw::Connection.adapter.schema_cache end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
table_saw-3.1.0 | lib/table_saw.rb |
table_saw-3.0.0 | lib/table_saw.rb |