Class: Superbot::CLI::RunCommand

Inherits:
Clamp::Command
  • Object
show all
Includes:
Validations
Defined in:
lib/superbot/cli/run_command.rb

Instance Method Summary collapse

Methods included from Validations

#validates_project_path

Instance Method Details

#executeObject



14
15
16
17
18
19
20
21
22
# File 'lib/superbot/cli/run_command.rb', line 14

def execute
  web = Superbot::Web.new
  web.run_async_after_running!

  puts "🤖 active"
  puts ""
  puts "Press enter to exit"
  $stdin.gets
end