Module: ExcelUtils

Defined in:
lib/excel_utils.rb,
lib/excel_utils/sheet.rb,
lib/excel_utils/writer.rb,
lib/excel_utils/version.rb,
lib/excel_utils/workbook.rb

Defined Under Namespace

Classes: Sheet, Workbook, Writer

Constant Summary collapse

VERSION =
'1.1.1'

Class Method Summary collapse

Class Method Details

.read(filename, **options) ⇒ Object



15
16
17
# File 'lib/excel_utils.rb', line 15

def self.read(filename, **options)
  Workbook.new filename, **options
end

.write(filename, data) ⇒ Object



19
20
21
# File 'lib/excel_utils.rb', line 19

def self.write(filename, data)
  Writer.write filename, data
end