By IRC, dkubb say me we can avoid some freeze on some NameSpace by using the IceNine::Freezer::NoFreeze.
By example if I want not freeze by IceNine all object in RSpec you can do :
module IceNine
class Freezer
class RSpec < NoFreeze
end
end
end
Can be really usefull in your test.
Maybe a configuration in IceNince can be more easy with a design like :
IceNince.no_freeze_namespace([Rspec, Spec, Mocha])