class FilterRename::Filters::CopyFrom
Public Class Methods
hint()
click to toggle source
# File lib/filter_rename/filters.rb, line 151 def self.hint; 'Copy the text from TARGET'; end
params()
click to toggle source
# File lib/filter_rename/filters.rb, line 152 def self.params; 'TARGET'; end
Public Instance Methods
filter(params)
click to toggle source
Calls superclass method
FilterRename::FilterBase#filter
# File lib/filter_rename/filters.rb, line 154 def filter(params) super get_string(params[0]).to_s end