module StatsLite

Constants

DEFAULT_COMMANDS
VERSION

Public Class Methods

configure() { |config, Helper| ... } click to toggle source
# File lib/stats_lite/configure.rb, line 42
def configure
  config = @configuration ||= Configuration.new
  if block_given?
    yield config, StatsLite::Helper
  else
    config
  end
end