986695e136
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
17 lines
312 B
Ruby
17 lines
312 B
Ruby
class GlobalLabel
|
|
attr_accessor :title, :labels
|
|
alias_attribute :name, :title
|
|
|
|
def self.build_collection(labels)
|
|
labels = labels.group_by(&:title)
|
|
|
|
labels.map do |title, label|
|
|
new(title, label)
|
|
end
|
|
end
|
|
|
|
def initialize(title, labels)
|
|
@title = title
|
|
@labels = labels
|
|
end
|
|
end
|