module Really

Constants

VERSION

Public Class Methods

provision(options = {}) click to toggle source
# File lib/really.rb, line 13
def provision(options = {})
  options = options.dup
  message = "Invoked with options: #{options}"

  logger.verbose = options.delete :verbose
  logger.quiet = options.delete :quiet

  logger.debug message

  script = Script.new options.delete(:config_file), options
  script.execute
end
start_cli(args) click to toggle source
# File lib/really.rb, line 9
def start_cli(args)
  CLI.start args
end