Method: App42::Command::Service#start
- Defined in:
- lib/app42/command/service.rb
#start ⇒ Object
collect service name from user and proceed service start request
110 111 112 113 114 |
# File 'lib/app42/command/service.rb', line 110 def start @options[:service] = ask_service_name if @options[:service].nil? response = service_operation __method__, @options[:service] if is_service_exist? @options[:service] exit! if response end |