Sha256: da67d8373d8f62c16884c8f046dc3a8fd44c873f70e3eab29be6b7a2d35ad3ba
Contents?: true
Size: 817 Bytes
Versions: 36
Compression:
Stored size: 817 Bytes
Contents
# require File.expand_path(File.join(File.dirname(__FILE__),'workbook')) # require File.expand_path(File.join(File.dirname(__FILE__),'worksheet')) # require File.expand_path(File.join(File.dirname(__FILE__),'cell')) # require File.expand_path(File.join(File.dirname(__FILE__),'color')) require 'rubygems' require 'nokogiri' module RubyXL module Writer #TODO class CalcChainWriter attr_accessor :dirpath, :filepath, :workbook def initialize(dirpath, wb) @dirpath = dirpath @workbook = wb @filepath = dirpath + '/xl/calcChain.xml' end def write() contents = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>'+"\n" contents += '' # file = File.new(@filepath, 'w+') # file.write(contents) # file.close contents end end end end
Version data entries
36 entries across 36 versions & 3 rubygems