module EventsEmitter
Public Class Methods
event(key, value = 1, type = :graphite)
click to toggle source
# File lib/events_emitter.rb, line 7 def self.event(key, value = 1, type = :graphite) Base.new(type).event(key, value) end