Sha256: e081164197db36341e4196dd822b61872cd59d14fa2fe0dc6e07b9736598b2b1

Contents?: true

Size: 508 Bytes

Versions: 21

Compression:

Stored size: 508 Bytes

Contents

# encoding: utf-8

require 'faraday'

module BitBucket
  class Response::Jsonize < Response
    dependency 'multi_json'

    define_parser do |body|
      if MultiJson.respond_to?(:load)
        MultiJson.load body
      else
        MultiJson.decode body
      end
    end

    def parse(body)
      case body
      when ''
        nil
      when 'true'
        true
      when 'false'
        false
      else
        self.class.parser.call body
      end
    end
  end # Response::Jsonize
end # BitBucket

Version data entries

21 entries across 21 versions & 5 rubygems

Version Path
bitbucket_rest_api-0.1.0 lib/bitbucket_rest_api/response/jsonize.rb