gitlab-org--gitlab-foss/lib/github/representation/label.rb
2017-04-24 16:17:52 -03:00

17 lines
239 B
Ruby

module Github
module Representation
class Label < Representation::Base
def color
"##{raw['color']}"
end
def title
raw['name']
end
def url
raw['url']
end
end
end
end