Method: Resumer::CLI#run

Defined in:
lib/resumer.rb

#runObject

rubocop:enable Metrics/MethodLength



40
41
42
43
44
45
46
47
# File 'lib/resumer.rb', line 40

def run
  default_command :usage
  add_command(Resumer::Command::Usage.new)
  add_command(Resumer::Command::Init.new)
  add_command(Resumer::Command::Validate.new)
  add_export_command
  run!
end