Sha256: d224e4787e6b6a52374a92cb1ec6f47d8c55c3f44a59260c906b2c4527bd5381
Contents?: true
Size: 425 Bytes
Versions: 26
Compression:
Stored size: 425 Bytes
Contents
module Kernel # A shorthand pronoun for binding(). # # a = 3 # b = here # eval( "a", b ) #=> 3 # alias_method( :here, :binding ) end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCKernel < Test::Unit::TestCase def test_here assert_instance_of( Binding, here ) end end =end
Version data entries
26 entries across 26 versions & 1 rubygems