class CommandLine::RequiredOptionMissing

Missing a required flag

Public Class Methods

new(option) click to toggle source
Calls superclass method
    # File lib/cli/command_line_arguments.rb
261 def initialize(option)
262   super("You have to provide the #{option.name} option!")
263 end