class Puma::Daemon::CLI

Attributes

argv[RW]
cli[RW]

Public Class Methods

new(argv = ARGV, events = Events.stdio) click to toggle source
# File lib/puma/daemon/cli.rb, line 8
def initialize(argv = ARGV, events = Events.stdio)
  self.argv = argv
  self.cli = ::Puma::CLI.new(argv, events)
end

Public Instance Methods

run() click to toggle source
# File lib/puma/daemon/cli.rb, line 13
def run
  cli.run
end