Sha256: c7182a616d31077bcfe73d29d8d5263e5433053e9e8995fecfac73a66af23791
Contents?: true
Size: 456 Bytes
Versions: 27
Compression:
Stored size: 456 Bytes
Contents
module TrackerApi module Endpoints class Projects attr_accessor :client def initialize(client) @client = client end def get(params={}) data = client.paginate('/projects', params: params) raise TrackerApi::Errors::UnexpectedData, 'Array of projects expected' unless data.is_a? Array data.map { |project| Resources::Project.new({ client: client }.merge(project)) } end end end end
Version data entries
27 entries across 27 versions & 2 rubygems