class Ronin::CLI::StringMethodsCommand

Base class for all commands that process strings by calling one or more methods on them.

Public Instance Methods

process_string(string) click to toggle source

Processes the string.

@param [String] string

The string to process.

@return [String]

The end result string.
# File lib/ronin/cli/string_methods_command.rb, line 41
def process_string(string)
  apply_method_options(string)
end