# fastness ➞ cat file1.rb require 'file2' spec do puts "hello" end # fastness ➞ cat file2.rb def spec(&block) eval "p caller(1)", block.binding end |
Pastie
Support Pastie
or read my
Pastie << self
blog
# fastness ➞ cat file1.rb require 'file2' spec do puts "hello" end # fastness ➞ cat file2.rb def spec(&block) eval "p caller(1)", block.binding end |