lib/table_saw/configuration.rb in table_saw-2.2.0 vs lib/table_saw/configuration.rb in table_saw-2.3.0
- old
+ new
@@ -1,9 +1,9 @@
# frozen_string_literal: true
module TableSaw
class Configuration
- attr_accessor :dbname, :host, :port, :user, :password, :manifest, :output
+ attr_accessor :dbname, :host, :port, :user, :password, :manifest, :output, :format
def connection
{ dbname: dbname, host: host, port: port, user: user, password: password }
end