lib/departure/configuration.rb in departure-1.0.1 vs lib/departure/configuration.rb in departure-2.0.0

- old
+ new

@@ -1,11 +1,12 @@ module Departure class Configuration - attr_accessor :tmp_path + attr_accessor :tmp_path, :global_percona_args def initialize @tmp_path = '.'.freeze @error_log_filename = 'departure_error.log'.freeze + @global_percona_args = nil end def error_log_path File.join(tmp_path, error_log_filename) end