Kill those warnings without having to load activesupport, just drop this wherever you need 🙂
Usage
class Foo; BAR = 1; end
silence_warnings{ Foo.const_set :BAR, 2 }
Code
def silence_warnings
old_verbose, $VERBOSE = $VERBOSE, nil
yield
ensure
$VERBOSE = old_verbose
end