Sha256: 6e42011d3c9b2c92b01b1bafc8e7834d371bc0349293069132b87ff1fa9b44dd
Contents?: true
Size: 1.06 KB
Versions: 4
Compression:
Stored size: 1.06 KB
Contents
require 'rxl/version' require 'rubyXL' require_relative 'workbook' module Rxl def self.write_file(filepath, hash_workbook) rubyxl_workbook = Workbook.hash_workbook_to_rubyxl_workbook(hash_workbook) rubyxl_workbook.write(filepath) nil end def self.write_file_as_tables(filepath, hash_tables, order, write_headers: true) hash_workbook = Workbook.hashes_to_hash_workbook(hash_tables, order, write_headers: write_headers) write_file(filepath, hash_workbook) nil end def self.read_file(filepath) rubyxl_workbook = RubyXL::Parser.parse(filepath) Workbook.rubyxl_to_hash(rubyxl_workbook) end def self.read_file_as_tables(filepath) hash_workbook = read_file(filepath) Workbook.hash_workbook_to_hash_tables(hash_workbook) end 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 end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rxl-0.5.1 | lib/rxl.rb |
rxl-0.5.0 | lib/rxl.rb |
rxl-0.4.1 | lib/rxl.rb |
rxl-0.4.0 | lib/rxl.rb |