module GreatPretender

Constants

VERSION

Public Class Methods

config() { |config| ... } click to toggle source
# File lib/great_pretender/config.rb, line 18
def self.config
  @config ||= Config.new
  if block_given?
    yield @config
  end
  @config
end