Hello guys,
Recently an application started to print these nasty messaes everytime I try to run a rake task:
Hello guys,
Recently an application started to print these nasty messaes everytime I try to run a rake task:
Hello guys,
Recently an application started to print these nasty messaes everytime I try to run a rake task:
Hello guys,
Recently an application started to print these nasty messaes everytime I try to run a rake task:
Some thing is requiring test/unit
Fred
Is there any way to discover who's doing it? Or any way to disable it?
Well, solved it
Here's the deal for future searches, I've added a require method to my environment.rb file (before rails boot require):
def require( file ) if file == 'test/unit' raise "do not require this shit" else super end end
And just found out where it was being required
Thanks!