module Feathr

Constants

VERSION

Public Class Methods

configure() { |default| ... } click to toggle source
# File lib/feathr.rb, line 47
def configure
  if block_given?
    yield(Feathr::Config.default)
  else
    Feathr::Config.default
  end
end