Class: FilterRename::Filters::CopyFrom
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
186
|
# File 'lib/filter_rename/filters.rb', line 186
def self.hint; 'Copy the text from TARGET'; end
|
.params ⇒ Object
187
|
# File 'lib/filter_rename/filters.rb', line 187
def self.params; 'TARGET'; end
|
Instance Method Details
#filter(params) ⇒ Object
189
190
191
|
# File 'lib/filter_rename/filters.rb', line 189
def filter(params)
super get_string(params[0]).to_s
end
|