You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/vendor/bundle/ruby/4.0.0/gems/puma-7.2.0/bin/pumactl

13 lines
151 B

#!/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