lib/table_saw.rb in table_saw-0.5.0 vs lib/table_saw.rb in table_saw-1.0.0
- old
+ new
@@ -1,10 +1,11 @@
# 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'
module TableSaw
def self.configuration
@@ -17,7 +18,11 @@
else
args.each do |key, value|
configuration.public_send("#{key}=", value)
end
end
+ end
+
+ def self.information_schema
+ @information_schema ||= TableSaw::InformationSchema.new
end
end