Skip to content

Instantly share code, notes, and snippets.

@solars

solars/test.rb Secret

Created February 2, 2016 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save solars/b9ad14feb06f5e8081fe to your computer and use it in GitHub Desktop.
Save solars/b9ad14feb06f5e8081fe to your computer and use it in GitHub Desktop.
module Kernel
alias_method :original_require, :require
def require name
puts name
puts __FILE__
original_require name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment