Class: Cue::Group

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/cue/group.rb

Instance Method Summary collapse

Instance Method Details

#itemsObject



9
10
11
# File 'lib/cue/group.rb', line 9

def items
  @items ||= []
end

#to_sObject



13
14
15
# File 'lib/cue/group.rb', line 13

def to_s
  items.map(&:to_s).join("\n")
end