module Land

Constants

VERSION

Public Class Methods

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

  yield config if block_given?

  config
end