14 lines
195 B
Ruby
14 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
|