#!/usr/bin/env ruby require 'puma/control_cli' cli = Puma::ControlCLI.new ARGV.dup begin cli.run rescue => e STDERR.puts e.message exit 1 end