1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/dev-utils/eval_debugger.rb
David Heinemeier Hansson f389a8fb5d Updated and added more documentation
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@193 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2004-12-16 17:14:41 +00:00

14 lines
419 B
Ruby

# Require this file to see the methods Active Record generates as they are added.
class Module #:nodoc:
alias :old_module_eval :module_eval
def module_eval(*args, &block)
if args[0]
puts "----"
print "module_eval in #{self.name}"
print ": file #{args[1]}" if args[1]
print " on line #{args[2]}" if args[2]
puts "\n#{args[0]}"
end
old_module_eval(*args, &block)
end
end