1 2 3 4 5 6 7 8 9
class GroupLabel attr_accessor :title, :labels alias_attribute :name, :title def initialize(title, labels) @title = title @labels = labels end end