mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Initial
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
14
activerecord/dev-utils/eval_debugger.rb
Normal file
14
activerecord/dev-utils/eval_debugger.rb
Normal 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
|
||||
Reference in New Issue
Block a user