module Gridhook

Constants

VERSION

Public Class Methods

config() click to toggle source

Returns a new Config instance.

# File lib/gridhook/config.rb, line 4
def self.config
  @config ||= Config.new
end
configure() { |config| ... } click to toggle source

A helper method for providing a configure block.

# File lib/gridhook/config.rb, line 9
def self.configure
  yield config
end