Sha256: d68f3258aa6eb2c4f0be8be2a16081ab8a0dd650201ec51e073d81e875e4dd7e
Contents?: true
Size: 1.72 KB
Versions: 7
Compression:
Stored size: 1.72 KB
Contents
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) if response.is_a?(Faraday::Response) return nil if response.status == 204 response = response.body end 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 private def method_missing(method_name, *args, &blk) if respond_to?(method_name) || has_special_ending?(method_name) super elsif use_strict_reader?(method_name) fetch(method_name) else super end end def use_strict_reader?(method_name) respond_to?(:strict_attr_reader?) && self.strict_attr_reader? && method_name != :to_ary end def has_special_ending?(name) name.to_s =~ /[?=]$/ end end end
Version data entries
7 entries across 7 versions & 1 rubygems