Class: FilterRename::Filters::AppendFrom
Class Method Summary
collapse
Instance Method Summary
collapse
#current_target, #get_config, #get_string, #get_words, #initialize, #match?, #set_config, #set_string, #wrap_regex
Class Method Details
.hint ⇒ Object
62
|
# File 'lib/filter_rename/filters.rb', line 62
def self.hint; 'Append the text from TARGET'; end
|
.params ⇒ Object
63
|
# File 'lib/filter_rename/filters.rb', line 63
def self.params; 'TARGET'; end
|
Instance Method Details
#filter(params) ⇒ Object
65
66
67
|
# File 'lib/filter_rename/filters.rb', line 65
def filter(params)
super "#{get_string}#{get_string(params[0])}"
end
|