1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/bin/puma

17 lines
222 B
Text
Raw Normal View History

#!/usr/bin/env ruby
#
2011-09-23 23:46:33 -04:00
# Copyright (c) 2011 Evan Phoenix
#
2011-09-27 12:23:03 -04:00
require 'puma/cli'
2012-08-01 13:11:27 -04:00
require 'puma/cluster_cli'
2012-08-01 13:11:27 -04:00
if ARGV[0] == "cluster"
ARGV.shift
cli = Puma::ClusterCLI.new ARGV
else
cli = Puma::CLI.new ARGV
end
cli.run