class Evostream::CLI::Argument::Help

Argument for display help

Constants

KEY

Public Class Methods

new() click to toggle source
# File lib/evostream/cli/option/help.rb, line 12
def initialize
  @file = File.read(File.join(__dir__, 'help'))
end

Private Instance Methods

action() click to toggle source
Calls superclass method Evostream::CLI::Argument::Arg#action
# File lib/evostream/cli/option/help.rb, line 18
def action
  puts @file
  super
end