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/puma-wild

26 lines
302 B

#!/usr/bin/env ruby
#
# Copyright (c) 2014 Evan Phoenix
#
require 'rubygems'
cli_arg = ARGV.shift
inc = ""
if cli_arg == "-I"
inc = ARGV.shift
$LOAD_PATH.concat inc.split(":")
end
module Puma; end
Puma.const_set(:WILD_ARGS, ["-I", inc])
require 'puma/cli'
cli = Puma::CLI.new ARGV
cli.run