class FilterRename::Filters::AppendFrom

Public Class Methods

hint() click to toggle source
# File lib/filter_rename/filters.rb, line 52
def self.hint; 'Append the text from TARGET'; end
params() click to toggle source
# File lib/filter_rename/filters.rb, line 53
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 55
def filter(params)
  super "#{get_string}#{get_string(params[0])}"
end