Method: Sunshine::StartCommand#start

Defined in:
lib/commands/start.rb

#start(app_names, force = false) ⇒ Object

Start specified apps.



43
44
45
46
47
48
# File 'lib/commands/start.rb', line 43

def start app_names, force=false
  status_after_command :start, app_names do |server_app|

    server_app.stop if server_app.running? && force
  end
end