Method: LivecodeServer::Command#run
- Defined in:
- lib/livecode_server/command.rb
#run(*args) ⇒ Object
Start the server and stay on top
129 130 131 132 133 134 135 136 |
# File 'lib/livecode_server/command.rb', line 129 def run(*args) @options[:ontop] = true if server_running? puts "Livecode server is already running on #{LivecodeServer.uri}" else daemon_group.new_application.start end end |