Sha256: 468019a1c0d02969b5971d3f08cdb9ff75358a20ee0df61ef7c89ef560232ccc
Contents?: true
Size: 336 Bytes
Versions: 38
Compression:
Stored size: 336 Bytes
Contents
module TrackerApi module Endpoints class Project attr_accessor :client def initialize(client) @client = client end def get(id, params={}) data = client.get("/projects/#{id}", params: params).body Resources::Project.new({ client: client }.merge(data)) end end end end
Version data entries
38 entries across 38 versions & 2 rubygems