Reflection Ruby

def func1
  puts caller[0]
end
def func2
  func1
end
func2              # Prints: somefile.rb:6:in 'func2'