Class: CopyTunerIncompatibleSearch::ReplaceCommand::Result

Inherits:
Object
  • Object
show all
Defined in:
lib/copy_tuner_incompatible_search/replace_command.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(newly_replaced_keys, existing_keys, not_used_incompatible_keys, keys_to_ignore, already_ignored_keys, keys_with_special_chars, dynamic_count) ⇒ Result

rubocop:disable Metrics/ParameterLists, Layout/LineLength



128
129
130
131
132
133
134
135
136
# File 'lib/copy_tuner_incompatible_search/replace_command.rb', line 128

def initialize(newly_replaced_keys, existing_keys, not_used_incompatible_keys, keys_to_ignore, already_ignored_keys, keys_with_special_chars, dynamic_count) # rubocop:disable Metrics/ParameterLists, Layout/LineLength
  @newly_replaced_keys = newly_replaced_keys
  @existing_keys = existing_keys
  @not_used_incompatible_keys = not_used_incompatible_keys
  @keys_to_ignore = keys_to_ignore
  @already_ignored_keys = already_ignored_keys
  @keys_with_special_chars = keys_with_special_chars
  @dynamic_count = dynamic_count
end

Instance Attribute Details

#already_ignored_keysObject (readonly)

Returns the value of attribute already_ignored_keys.



125
126
127
# File 'lib/copy_tuner_incompatible_search/replace_command.rb', line 125

def already_ignored_keys
  @already_ignored_keys
end

#dynamic_countObject (readonly)

Returns the value of attribute dynamic_count.



125
126
127
# File 'lib/copy_tuner_incompatible_search/replace_command.rb', line 125

def dynamic_count
  @dynamic_count
end

#existing_keysObject (readonly)

Returns the value of attribute existing_keys.



125
126
127
# File 'lib/copy_tuner_incompatible_search/replace_command.rb', line 125

def existing_keys
  @existing_keys
end

#keys_to_ignoreObject (readonly)

Returns the value of attribute keys_to_ignore.



125
126
127
# File 'lib/copy_tuner_incompatible_search/replace_command.rb', line 125

def keys_to_ignore
  @keys_to_ignore
end

#keys_with_special_charsObject (readonly)

Returns the value of attribute keys_with_special_chars.



125
126
127
# File 'lib/copy_tuner_incompatible_search/replace_command.rb', line 125

def keys_with_special_chars
  @keys_with_special_chars
end

#newly_replaced_keysObject (readonly)

Returns the value of attribute newly_replaced_keys.



125
126
127
# File 'lib/copy_tuner_incompatible_search/replace_command.rb', line 125

def newly_replaced_keys
  @newly_replaced_keys
end

#not_used_incompatible_keysObject (readonly)

Returns the value of attribute not_used_incompatible_keys.



125
126
127
# File 'lib/copy_tuner_incompatible_search/replace_command.rb', line 125

def not_used_incompatible_keys
  @not_used_incompatible_keys
end