Class: FilterRename::Filters::AppendAsWordTo
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
72
|
# File 'lib/filter_rename/filters.rb', line 72
def self.hint; 'Append the TEXT to TARGET as a word'; end
|
.params ⇒ Object
73
|
# File 'lib/filter_rename/filters.rb', line 73
def self.params; 'TEXT,TARGET'; end
|
Instance Method Details
#filter(params) ⇒ Object
75
76
77
78
79
|
# File 'lib/filter_rename/filters.rb', line 75
def filter(params)
ws = get_config(:word_separator)
set_string(get_string(params[1]).to_s.split(ws).push(params[0]).join(ws), params[1])
super get_string
end
|