lib/birdspotting/configuration.rb in birdspotting-0.1.1 vs lib/birdspotting/configuration.rb in birdspotting-0.1.2

- old
+ new

@@ -1,17 +1,17 @@ class Birdspotting::Configuration - attr_accessor :start_check_at, + attr_accessor :start_check_at_version, :check_bypass_env_var, :add_column_position_check, :encoding_check, :encoding_check_message, :rename_column_check, :rename_column_message, :remove_column_check def self.default new.tap do |config| - config.start_check_at = nil + config.start_check_at_version = nil config.check_bypass_env_var = "BYPASS_SCHEMA_STATEMENTS_CHECK" config.add_column_position_check = true config.encoding_check = true config.encoding_check_message = "\n/!\\ You are dealing with a %<type>s field" \ "(%<column_name>s): did you think about emojis and used the appropriate encoding? /!\\ \n\n"