Class: FilterRename::Filters::Append
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
52
|
# File 'lib/filter_rename/filters.rb', line 52
def self.hint; 'Append the TEXT to the current target'; end
|
.params ⇒ Object
53
|
# File 'lib/filter_rename/filters.rb', line 53
def self.params; 'TEXT'; end
|
Instance Method Details
#filter(params) ⇒ Object
55
56
57
|
# File 'lib/filter_rename/filters.rb', line 55
def filter(params)
super "#{get_string}#{params[0]}"
end
|