Class: Superbot::CLI::Local::EasyModeCommand

Inherits:
Clamp::Command
  • Object
show all
Defined in:
lib/superbot/local/cli/local/easy_mode_command.rb

Instance Method Summary collapse

Instance Method Details

#executeObject



9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/superbot/local/cli/local/easy_mode_command.rb', line 9

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

  puts "🤖 active"
  puts ""
  puts "Press enter to exit"

  open_step_editor

  $stdin.gets

  close_step_editor
end