module Slimy

Slimy module for SLI Instrumentation

Constants

VERSION

Public Class Methods

configure() { |default| ... } click to toggle source
# File lib/slimy.rb, line 13
def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end