Ruby: standalone silence_warnings

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

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s