Method: Cellar#row
- Defined in:
- lib/cellar.rb
#row(row = nil) ⇒ Object
206 207 208 209 210 |
# File 'lib/cellar.rb', line 206 def row(row=nil) @rows or raise "no rows defined" @values = row ? @rows[@row = row] : [] self end |
206 207 208 209 210 |
# File 'lib/cellar.rb', line 206 def row(row=nil) @rows or raise "no rows defined" @values = row ? @rows[@row = row] : [] self end |