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