#!/usr/bin/env ruby # # Copyright (c) 2011 Evan Phoenix # require 'puma/cli' require 'puma/cluster_cli' if ARGV[0] == "cluster" ARGV.shift cli = Puma::ClusterCLI.new ARGV else cli = Puma::CLI.new ARGV end cli.run