module Hivent

Constants

VERSION

Public Class Methods

emitter() click to toggle source
# File lib/hivent.rb, line 28
def self.emitter
  @emitter ||= Emitter.new
end

Public Instance Methods

configure() { |Config| ... } click to toggle source
# File lib/hivent.rb, line 24
def configure
  block_given? ? yield(Hivent::Config) : Hivent::Config
end