module Gondler

Constants

VERSION

Public Class Methods

env() click to toggle source
# File lib/gondler.rb, line 18
def env
  @env ||= Gondler::Env.new
end
without(_without = nil) { || ... } click to toggle source
# File lib/gondler.rb, line 9
def without(_without = nil)
  if block_given?
    _without, @without = without, _without
    yield
    @without = _without
  end
  @without || []
end