Class: App

Inherits:
Object
  • Object
show all
Defined in:
bin/informer

Constant Summary collapse

VERSION =
'0.2.0'

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(arguments, stdin) ⇒ App

Returns a new instance of App.



46
47
48
49
50
51
52
53
54
55
56
57
# File 'bin/informer', line 46

def initialize(arguments, stdin)
  @arguments = arguments
  @stdin = stdin
  
  # Set defaults
  @options = OpenStruct.new
  @options.verbose = false
  @options.quiet = false
  @options.reporter = "standard_output"
  
  @options.processes = []
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



44
45
46
# File 'bin/informer', line 44

def options
  @options
end

Instance Method Details

#runObject

Parse options, check arguments, then process the command



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'bin/informer', line 60

def run
      
  if parsed_options?
    
    puts "Start at #{DateTime.now}\n\n" if @options.verbose
    
    output_options if @options.verbose
          
    process_arguments            
    process_command
    
    puts "\nFinished at #{DateTime.now}" if @options.verbose
    
  else
    output_usage
  end
    
end