module Guts

Guts' module namespace

Guts' module namespace

Guts' module namespace

Guts' module namespace

Constants

VERSION

Current Guts version

Public Class Methods

configuration() click to toggle source

Configuration for Guts @return [Object] returns configuration

# File lib/guts/configuration.rb, line 5
def self.configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source

Defining configuration through block format @yield [configuration] passes current configuration into block

# File lib/guts/configuration.rb, line 11
def self.configure
  yield configuration
end