Class: Webcommand::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/webcommand/cli.rb

Instance Method Summary collapse

Instance Method Details

#serverObject



8
9
10
11
12
13
14
# File 'lib/webcommand/cli.rb', line 8

def server
  exec "puma " \
   "-p #{options[:port]} " \
   "-t #{options[:threads]}:#{options[:threads]} " \
   "-w #{options[:workers]} " \
   "#{Webcommand.root_path.join('config.ru')}"
end