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

Version Path
tracker_api-0.2.6 lib/tracker_api/endpoints/projects.rb
tracker_api-0.2.5 lib/tracker_api/endpoints/projects.rb
tracker_api-0.2.4 lib/tracker_api/endpoints/projects.rb
tracker_api-0.2.3 lib/tracker_api/endpoints/projects.rb
tracker_api-0.2.2 lib/tracker_api/endpoints/projects.rb
tracker_api-0.2.1 lib/tracker_api/endpoints/projects.rb
tracker_api-0.2.0 lib/tracker_api/endpoints/projects.rb