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

Default Rack handler helper

This commit is contained in:
Ian MacLeod 2013-02-09 20:27:05 -08:00
parent 2e24400246
commit 84640ab496

7
lib/puma/rack_default.rb Normal file
View file

@ -0,0 +1,7 @@
require 'rack/handler/puma'
module Rack::Handler
def self.default(options = {})
Rack::Handler::Puma
end
end