module Elastomer::CLI
Constants
- VERSION
Public Class Methods
setup_failure_hook()
click to toggle source
Force Thor to exit immediately with nonzero status if a command fails. This is probably what you want when running from the command line.
# File lib/elastomer/cli.rb, line 34 def self.setup_failure_hook Base.extend(FailureHook) end
start(*args)
click to toggle source
# File lib/elastomer/cli.rb, line 19 def self.start(*args) Elastomer::CLI::Application.start(*args) end