Class: Github::Response::Jsonize
- Inherits:
-
Github::Response
- Object
- Faraday::Response::Middleware
- Github::Response
- Github::Response::Jsonize
- Defined in:
- lib/github_api2/response/jsonize.rb
Constant Summary
Constants inherited from Github::Response
Instance Method Summary collapse
Methods inherited from Github::Response
define_parser, #initialize, #parse_body?, #parse_response?, #parse_response_type?, #process_body, #response_type
Constructor Details
This class inherits a constructor from Github::Response
Instance Method Details
#parse(body) ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/github_api2/response/jsonize.rb', line 15 def parse(body) case body when '' nil when 'true' true when 'false' false else self.class.parser.call(body) end end |