class Object

Public Instance Methods

start() { || ... } click to toggle source

params = true # -a params = “1” # -b1 params = “1” # –foo params = “x” # –bar x params = “z” # –zot Z

# File lib/tm_bundle/command.rb, line 7
def start
  TMBundle.eager_load!
  @tmb = TMBundle.new
  yield
end