module Rxl
Constants
- VERSION
Public Class Methods
read_file(filepath)
click to toggle source
# File lib/rxl.rb, line 19 def self.read_file(filepath) rubyxl_workbook = RubyXL::Parser.parse(filepath) Workbook.rubyxl_to_hash(rubyxl_workbook) end
read_file_as_tables(filepath)
click to toggle source
# File lib/rxl.rb, line 24 def self.read_file_as_tables(filepath) hash_workbook = read_file(filepath) Workbook.hash_workbook_to_hash_tables(hash_workbook) end
read_files(filepaths_hash, read_style = nil)
click to toggle source
# File lib/rxl.rb, line 29 def self.read_files(filepaths_hash, read_style = nil) return_hash = {} filepaths_hash.each do |key, value| if read_style == :as_tables return_hash[key] = read_file_as_tables(value) else return_hash[key] = read_file(value) end end return_hash end
write_file(filepath, hash_workbook)
click to toggle source
# File lib/rxl.rb, line 7 def self.write_file(filepath, hash_workbook) rubyxl_workbook = Workbook.hash_workbook_to_rubyxl_workbook(hash_workbook) rubyxl_workbook.write(filepath) nil end
write_file_as_tables(filepath, hash_tables, write_headers: true)
click to toggle source
# File lib/rxl.rb, line 13 def self.write_file_as_tables(filepath, hash_tables, write_headers: true) hash_workbook = Workbook.hashes_to_hash_workbook(hash_tables, write_headers: write_headers) write_file(filepath, hash_workbook) nil end