Class: FilterRename::Filters::AddNumberFrom

Inherits:
FilterRename::FilterNumber show all
Defined in:
lib/filter_rename/filters.rb

Instance Attribute Summary

Attributes included from IndexedParams

#items, #params, #params_expanded

Class Method Summary collapse

Instance Method Summary collapse

Methods included from IndexedParams

#filter, #get_indexes, #indexed_params, #normalize_index, #self_targeted?, #string_to_loop

Methods inherited from FilterRename::FilterBase

#current_target, #filter, #get_config, #get_string, #get_words, #initialize, #match?, #set_config, #set_string, #wrap_regex

Constructor Details

This class inherits a constructor from FilterRename::FilterBase

Class Method Details

.hintObject



42
# File 'lib/filter_rename/filters.rb', line 42

def self.hint; 'Add the number from TARGET to the NTH'; end

.paramsObject



43
# File 'lib/filter_rename/filters.rb', line 43

def self.params; 'NTH;TARGET'; end

Instance Method Details

#filtered_number(num, param_num) ⇒ Object



45
46
47
# File 'lib/filter_rename/filters.rb', line 45

def filtered_number(num, param_num)
  num.to_i + get_string(params[1]).to_i
end