class Puma::DSL

def workers(count)

Other tags:
    See: Puma::Cluster -
def workers(count)
  @options[:workers] = count.nil? ? 0 : @config.send(:parse_workers, count)
end