module Humanizer

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/humanizer.rb, line 8
def config
  @config ||= Config.new
  @config
end
config=(data) click to toggle source
# File lib/humanizer.rb, line 4
def config=(data)
  @config = data
end
configure() { |config| ... } click to toggle source
# File lib/humanizer.rb, line 13
def configure(&proc)
  @config ||= Config.new
  yield @config
end