Module: HttpRouter::Response

Defined in:
lib/http_router/response.rb

Defined Under Namespace

Classes: Matched, Unmatched

Class Method Summary collapse

Class Method Details

.matched(*args) ⇒ Object



3
4
5
# File 'lib/http_router/response.rb', line 3

def self.matched(*args)
  Matched.new(*args)
end

.unmatched(*args) ⇒ Object



7
8
9
# File 'lib/http_router/response.rb', line 7

def self.unmatched(*args)
  Unmatched.new(*args)
end