Module: Orats::Commands::New::Server
- Included in:
- Exec
- Defined in:
- lib/orats/commands/new/server.rb
Overview
handle starting the server
Constant Summary collapse
- START_COMMAND =
'bundle exec foreman start'
Instance Method Summary collapse
Instance Method Details
#server_start ⇒ Object
11 12 13 14 15 16 17 18 19 20 |
# File 'lib/orats/commands/new/server.rb', line 11 def server_start if @options[:skip_server_start] = 'Start your' else = 'Starting' end display_notice attempt_to_start unless @options[:skip_server_start] end |