module EndpointFlux

Constants

VERSION

Public Instance Methods

clear() click to toggle source
# File lib/endpoint_flux.rb, line 17
def clear
  @config = nil
end
config(handler = nil) click to toggle source
# File lib/endpoint_flux.rb, line 11
def config(handler = nil)
  @config = handler if handler

  @config ||= EndpointFlux::Config.new
end