module Gosquared

Attributes

configuration[RW]

Public Class Methods

configure() { |configuration| ... } click to toggle source
# File lib/config.rb, line 7
def self.configure
  self.configuration ||= Configuration.new
  block_given? ? yield(configuration) : configuration
end