Method: Xmindoc::Exec#execute

Defined in:
lib/xmindoc.rb

#executeObject



150
151
152
153
154
155
156
157
158
159
160
161
162
# File 'lib/xmindoc.rb', line 150

def execute
  command = Xmindoc::Command.new(@argv)
  command.parse()

  core = Xmindoc::Core.new(command.option)
  core.convert()

  # (debug) Confirm options
  if Xmindoc::DEBUG
    print 'option: '
    pp command.option
  end
end