class Ronin::CLI::StringProcessorCommand::FileValue
A value object that represents a file to process.
Attributes
file[R]
The file’s path.
@return [String]
Public Class Methods
new(file)
click to toggle source
Initializes the file value.
@param [String] file
The path to the file.
# File lib/ronin/cli/string_processor_command.rb, line 67 def initialize(file) @file = file end