git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2004-11-24 01:04:44 +00:00
commit db045dbbf6
296 changed files with 30881 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# Require this file to see the methods Active Record generates as they are added.
class Module
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