Class: FilterRename::Filters::PrependToWord

Inherits:
FilterRename::FilterWord 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, #indexed_params, #indexes, #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



710
711
712
# File 'lib/filter_rename/filters.rb', line 710

def self.hint
  "Prepend the TEXT to the NTH word"
end

.paramsObject



714
715
716
# File 'lib/filter_rename/filters.rb', line 714

def self.params
  "NTH,TEXT"
end

Instance Method Details

#filtered_word(word, _param_num) ⇒ Object



718
719
720
# File 'lib/filter_rename/filters.rb', line 718

def filtered_word(word, _param_num)
  params[1] + word
end