Sha256: e1a7f2dd1b7af87a0dd21c0bcaa2a2bf82a444e11a99995042af090f16164665
Contents?: true
Size: 343 Bytes
Versions: 19
Compression:
Stored size: 343 Bytes
Contents
module TrackerApi module Endpoints class Epic attr_accessor :client def initialize(client) @client = client end def get(project_id, id) data = client.get("/projects/#{project_id}/epics/#{id}").body Resources::Epic.new({ project_id: project_id }.merge(data)) end end end end
Version data entries
19 entries across 19 versions & 2 rubygems