class Ronin::CLI::StringProcessorCommand::StringValue

A value object that represents a literal String input value.

Attributes

string[R]

The literal string value.

@return [String]

Public Class Methods

new(string) click to toggle source

Initializes the string value.

@param [String] string

The string value.
# File lib/ronin/cli/string_processor_command.rb, line 45
def initialize(string)
  @string = string
end