Module: Rack::Client::Parser

Defined in:
lib/rack/client/body.rb,
lib/rack/client/parser.rb,
lib/rack/client/parser/base.rb,
lib/rack/client/parser/json.rb,
lib/rack/client/parser/yaml.rb,
lib/rack/client/parser/context.rb,
lib/rack/client/parser/request.rb,
lib/rack/client/parser/response.rb,
lib/rack/client/parser/middleware.rb

Defined Under Namespace

Classes: Base, Body, Context, JSON, Middleware, Request, Response, YAML

Constant Summary collapse

Json =
JSON
Yaml =
YAML

Class Method Summary collapse

Class Method Details

.new(app, &b) ⇒ Object



7
8
9
# File 'lib/rack/client/parser.rb', line 7

def self.new(app, &b)
  Context.new(app, &b)
end