Sha256: 1182daf049b6d4a6d7238ee6cea040492429a602aa7828cfcbae2c51477ecffd
Contents?: true
Size: 966 Bytes
Versions: 9
Compression:
Stored size: 966 Bytes
Contents
# -*- coding: utf-8 -*- require 'writeexcel/caller_info' if defined?($writeexcel_debug) class BIFFWriter include CallerInfo def append(*args) data = ruby_18 { args.join } || ruby_19 { args.collect{ |arg| arg.dup.force_encoding('ASCII-8BIT') }.join } print_caller_info(data, :method => 'append') super end def prepend(*args) data = ruby_18 { args.join } || ruby_19 { args.collect{ |arg| arg.dup.force_encoding('ASCII-8BIT') }.join } print_caller_info(data, :method => 'prepend') super end def print_caller_info(data, param = {}) infos = caller_info print "#{param[:method]}\n" if param[:method] infos.each do |info| print "#{info[:file]}:#{info[:line]}" print " in #{info[:method]}" if info[:method] print "\n" end print data.unpack('C*').map! {|byte| sprintf("%02X", byte) }.join(' ') + "\n\n" end end end
Version data entries
9 entries across 9 versions & 1 rubygems