class Birdwatcher::Commands::Run

Public Instance Methods

run() click to toggle source
# File lib/birdwatcher/commands/run.rb, line 10
def run
  if !console.current_module
    error("No module loaded")
    return false
  end
  console.current_module.new.execute
end