class FilterRename::Filters::AppendTo

Public Class Methods

hint() click to toggle source
# File lib/filter_rename/filters.rb, line 74
def self.hint; 'Append the TEXT to TARGET'; end
params() click to toggle source
# File lib/filter_rename/filters.rb, line 75
def self.params; 'TEXT,TARGET'; end

Public Instance Methods

filter(params) click to toggle source
Calls superclass method FilterRename::FilterBase#filter
# File lib/filter_rename/filters.rb, line 77
def filter(params)
  set_string(get_string(params[1]).to_s + params[0], params[1])
  super get_string
end