module RubyReportable

Constants

VERSION

Public Class Methods

included(base) click to toggle source
# File lib/ruby_reportable/base.rb, line 4
def self.included(base)
  base.send :extend, RubyReportable::Report
  base.clear

  @@reports[base.to_s] = base
end
reports() click to toggle source
# File lib/ruby_reportable/base.rb, line 11
def self.reports
  @@reports
end