Sha256: 769d232e96959ed8baa42c2a161aa05784d997c25cbe012502adcf48195606fe
Contents?: true
Size: 942 Bytes
Versions: 1
Compression:
Stored size: 942 Bytes
Contents
module Formatters module Base def self.included(klass) klass.send(:attr_accessor, :file) end def initialize(file) self.file = file end def content [header, rows, footer].flatten.join("\r\n") end def columns ["class", "method", "complexity"] end def root_path "doc/fukuzatsu" end def output_path output_path = "#{root_path}/#{self.file.path_to_file.split('/')[0..-2].join("/")}" FileUtils.mkpath(output_path) output_path end def filename self.file.path_to_file.split('/')[-1] + file_extension end def file_extension "" end def export begin outfile = File.open("#{output_path}/#{filename}", 'w') outfile.write(content) rescue Exception => e puts "Unable to write output: #{e} #{e.backtrace}" ensure outfile && outfile.close end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fukuzatsu-0.9.13 | lib/fukuzatsu/formatters/base.rb |