Skip to content

Instantly share code, notes, and snippets.

@marka2g
Created January 17, 2012 22:19
Show Gist options
  • Save marka2g/1629357 to your computer and use it in GitHub Desktop.
Save marka2g/1629357 to your computer and use it in GitHub Desktop.
What's Rails Loading? Slam this in ur app.rb/env.rb
Kernel.class_eval do
alias :old_require :require
def require(*args)
puts args
old_require(*args)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment