Top Level Namespace

Defined Under Namespace

Modules: Is Classes: Array, Hash, Integer, Module, Object, Set, String, Symbol

Instance Method Summary collapse

Instance Method Details

#sandbox { ... } ⇒ Object

Yields:



4
5
6
7
8
9
# File 'lib/is/monkey/sandbox.rb', line 4

def sandbox &block
  lambda do
    $SAFE = 4
    yield
  end.call
end