Class: Ronin::CLI::StringMethodsCommand Private
- Inherits:
-
StringProcessorCommand
- Object
- Core::CLI::Command
- Command
- FileProcessorCommand
- StringProcessorCommand
- Ronin::CLI::StringMethodsCommand
- Includes:
- MethodOptions
- Defined in:
- lib/ronin/cli/string_methods_command.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Base class for all commands that process strings by calling one or more methods on them.
Direct Known Subclasses
Commands::Decode, Commands::Encode, Commands::Escape, Commands::Quote, Commands::Unescape, Commands::Unquote
Instance Attribute Summary
Attributes included from MethodOptions
Attributes inherited from StringProcessorCommand
Instance Method Summary collapse
-
#process_string(string) ⇒ String
private
Processes the string.
Methods included from MethodOptions
#apply_method_options, #initialize
Methods inherited from StringProcessorCommand
#initialize, #print_string, #process_input, #run
Methods inherited from FileProcessorCommand
#open_file, #process_file, #process_input, #run
Instance Method Details
#process_string(string) ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Processes the string.
41 42 43 |
# File 'lib/ronin/cli/string_methods_command.rb', line 41 def process_string(string) (string) end |