Sha256: 1af917b062471707dac977132835e3cc63f37d4f777aff0af9ae6b90ee066aeb

Contents?: true

Size: 285 Bytes

Versions: 2

Compression:

Stored size: 285 Bytes

Contents

require('rspreadsheet/cell')

# Currently this is only syntax sugar for cells and contains no functionality

module Rspreadsheet

class Row
  def initialize(workbook,rowi)
    @rowi = rowi
    @workbook = workbook
  end
  def cells(coli)
    @workbook.cells(@rowi,coli)
  end
end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rspreadsheet-0.0.5 lib/rspreadsheet/row.rb
rspreadsheet-0.0.4 lib/rspreadsheet/row.rb