module Reportier

Constants

VERSION

Public Class Methods

[](type) click to toggle source
# File lib/reportier.rb, line 16
def self.[](type)
  Tracker[type]
end
add_to_all(item) click to toggle source
# File lib/reportier.rb, line 10
def self.add_to_all(item)
  Defaults.global.trackers.each do |type, v|
    Tracker[type].add(item)
  end
end
configure(&blk) click to toggle source
# File lib/reportier.rb, line 20
def self.configure(&blk)
  Defaults.global.configure &blk
end