class FilterRename::Filters::Append

Public Class Methods

hint() click to toggle source
# File lib/filter_rename/filters.rb, line 42
def self.hint; 'Append the TEXT to the current target'; end
params() click to toggle source
# File lib/filter_rename/filters.rb, line 43
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 45
def filter(params)
  super "#{get_string}#{params[0]}"
end