Class: CopyTunerIncompatibleSearch::ReplaceCommand::Result
- Inherits:
-
Object
- Object
- CopyTunerIncompatibleSearch::ReplaceCommand::Result
- Defined in:
- lib/copy_tuner_incompatible_search/replace_command.rb
Instance Attribute Summary collapse
-
#already_ignored_keys ⇒ Object
readonly
Returns the value of attribute already_ignored_keys.
-
#dynamic_count ⇒ Object
readonly
Returns the value of attribute dynamic_count.
-
#existing_keys ⇒ Object
readonly
Returns the value of attribute existing_keys.
-
#keys_to_ignore ⇒ Object
readonly
Returns the value of attribute keys_to_ignore.
-
#keys_with_special_chars ⇒ Object
readonly
Returns the value of attribute keys_with_special_chars.
-
#newly_replaced_keys ⇒ Object
readonly
Returns the value of attribute newly_replaced_keys.
-
#not_used_incompatible_keys ⇒ Object
readonly
Returns the value of attribute not_used_incompatible_keys.
Instance Method Summary collapse
-
#initialize(newly_replaced_keys, existing_keys, not_used_incompatible_keys, keys_to_ignore, already_ignored_keys, keys_with_special_chars, dynamic_count) ⇒ Result
constructor
rubocop:disable Metrics/ParameterLists, Layout/LineLength.
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_keys ⇒ Object (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_count ⇒ Object (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_keys ⇒ Object (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_ignore ⇒ Object (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_chars ⇒ Object (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_keys ⇒ Object (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_keys ⇒ Object (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 |