module GitBumper

Constants

VERSION

Public Instance Methods

run() click to toggle source
# File lib/git_bumper.rb, line 11
def run
  parser = CLIParser.new(ARGV)
  abort unless parser.parse

  cli = CLI.new(parser.options)
  cli.run

  abort cli.error_msg if cli.error?
end