module HttpStub::Extensions::Rack::Handler::ClassMethods
Public Instance Methods
get(server)
click to toggle source
Calls superclass method
# File lib/http_stub/extensions/rack/handler.rb, line 13 def get(server) handler = super raise NameError, "#{server} Rack handler is invalid" unless handler.respond_to?(:run) handler end