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
190 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'
2011-09-27 12:23:03 -04:00
cli = Puma::CLI.new ARGV
2011-09-27 12:23:03 -04:00
begin
cli.run
rescue => e
raise e if $DEBUG
2011-09-27 12:23:03 -04:00
STDERR.puts e.message
exit 1
end