class FilterRename::Filters::Reverse

Public Class Methods

hint() click to toggle source
# File lib/filter_rename/filters.rb, line 462
def self.hint; 'Reverse the string'; end
params() click to toggle source
# File lib/filter_rename/filters.rb, line 463
def self.params; nil; end

Public Instance Methods

filter(params) click to toggle source
Calls superclass method FilterRename::FilterBase#filter
# File lib/filter_rename/filters.rb, line 465
def filter(params)
  super get_string.reverse
end