Sha256: e67fa8e59e22afb1bcff4626525f49f8d749e3b780508d992a73fbd26b21f5ef
Contents?: true
Size: 1.22 KB
Versions: 5
Compression:
Stored size: 1.22 KB
Contents
require "hashie" require "multi_json" module ApiClient class Base < Hashie::Mash extend ApiClient::Mixins::Inheritance extend ApiClient::Mixins::Instantiation extend ApiClient::Mixins::Scoping extend ApiClient::Mixins::ConnectionHooks class << self extend ApiClient::Mixins::Delegation extend ApiClient::Mixins::Configuration delegate :fetch, :get, :put, :post, :delete, :headers, :endpoint, :options, :adapter, :params, :raw, :to => :scope dsl_accessor :format, :namespace def subkey_class Hashie::Mash end def parse(response) response = response.body if response.is_a?(Faraday::Response) if self.format == :json MultiJson.load(response) elsif self.format == :xml MultiXml.parse(response) else response end end end # Defaults self.format :json def id self['id'] end def inspect attributes = [] attr_keys = self.keys - ['id'] attributes.push "id: #{self.id}" if self.id attr_keys.each do |key| attributes.push("#{key}: #{self[key].inspect}") end "#<#{self.class} #{attributes.join(', ')}>" end end end
Version data entries
5 entries across 5 versions & 1 rubygems