Sha256: 821c45c556b0727a9def727fd81e979169d12991a5dbe2a7c9d1a29c6cca923d
Contents?: true
Size: 981 Bytes
Versions: 1
Compression:
Stored size: 981 Bytes
Contents
require 'tankard/api/request/get' module Tankard module Api module Utils module Find include Tankard::Api::Request::Get def find(id_or_array, options={}) options = http_request_parameters.merge!(options) if id_or_array.is_a?(Array) id_or_array.map { |id| request_data_with_nil_on_http_error(http_client, "#{route}/#{id}", options) }.compact else request_data_with_nil_on_http_error(http_client, "#{route}/#{id_or_array}", options) end end private def route raise NoMethodError.new("Must implement and return the base route") end def http_client raise NoMethodError.new("Must return the http object to make requests with") end def http_request_parameters raise NoMethodError.new("Must return a hash like structure with request parameters") end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tankard-0.1.0 | lib/tankard/api/utils/find.rb |