Method: UCD::Interface::CommandLine#initialize

Defined in:
lib/ucd/interface/command_line.rb

#initialize(attributes = {}) ⇒ CommandLine

Returns a new instance of CommandLine.



15
16
17
18
19
20
21
22
23
# File 'lib/ucd/interface/command_line.rb', line 15

def initialize(attributes={})
  @formatter     = Formatter::Graphviz.new
  @verbose       = false
  @option_parser = OptionParser.new

  setup_parser_options

  super
end