class FilterRename::Filters::PrependFrom
Public Class Methods
hint()
click to toggle source
# File lib/filter_rename/filters.rb, line 374 def self.hint; 'Prepend the current target with the text from TARGET'; end
params()
click to toggle source
# File lib/filter_rename/filters.rb, line 375 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 377 def filter(params) super "#{get_string(params[0])}#{get_string}" end