module LogTools::ExporterBase

Public Class Methods

exporters() click to toggle source
# File lib/log_tools/exporter.rb, line 16
def self.exporters
    @exporters
end
included(other) click to toggle source
# File lib/log_tools/exporter.rb, line 10
def self.included(other)
    other.extend ClassMethods
    @exporters ||= Array.new
    @exporters << other
end

Public Instance Methods

export(value,filename,options = Hash.new) click to toggle source
# File lib/log_tools/exporter.rb, line 20
def export(value,filename,options = Hash.new)
end