Skip to content

Instantly share code, notes, and snippets.

@timh
Created January 13, 2010 23:15
Show Gist options
  • Save timh/276663 to your computer and use it in GitHub Desktop.
Save timh/276663 to your computer and use it in GitHub Desktop.
class Object
alias :old_require :require
def require(name)
puts "require #{name}"
if name == "generator"
begin
raise ""
rescue Object => e
puts "generator in this stacktrace:\n" + e.backtrace.join('\n')
end
end
old_require name
end
end
#class File
require "rubygems"
require "ohai"
puts "post ohai"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment