class FilterRename::Filters::Prepend

Public Class Methods

hint() click to toggle source
# File lib/filter_rename/filters.rb, line 364
def self.hint; 'Prepend the current target with TEXT'; end
params() click to toggle source
# File lib/filter_rename/filters.rb, line 365
def self.params; 'TEXT'; end

Public Instance Methods

filter(params) click to toggle source
Calls superclass method FilterRename::FilterBase#filter
# File lib/filter_rename/filters.rb, line 367
def filter(params)
  super "#{params[0]}#{get_string}"
end