#!/usr/bin/env ruby
#
# Copyright (c) 2011 Evan Phoenix
#

require 'puma/cli'

cli = Puma::CLI.new ARGV

begin
  cli.run
rescue => e
  STDERR.puts e.message
  exit 1
end
