debian-mirror-gitlab/lib/github/representation/label.rb
2017-08-17 22:00:37 +05:30

13 lines
195 B
Ruby

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