Sha256: 1037719d1bc4ea76db1b5f6e55fbf4e6d2212a7616e11e29101e1505538d446b

Contents?: true

Size: 1.58 KB

Versions: 9

Compression:

Stored size: 1.58 KB

Contents

require 'rbconfig'
module Kernel
  # Sets $VERBOSE to nil for the duration of the block and back to its original value afterwards.
  #
  #   silence_warnings do
  #     value = noisy_call # no warning voiced
  #   end
  #
  #   noisy_call # warning voiced
  def silence_warnings
    with_warnings(nil) { yield }
  end

  # Sets $VERBOSE to true for the duration of the block and back to its original value afterwards.
  def enable_warnings
    with_warnings(true) { yield }
  end

  # Sets $VERBOSE for the duration of the block and back to its original value afterwards.
  def with_warnings(flag)
    old_verbose, $VERBOSE = $VERBOSE, flag
    yield
  ensure
    $VERBOSE = old_verbose
  end

  # For compatibility
  def silence_stderr #:nodoc:
    silence_stream(STDERR) { yield }
  end

  # Silences any stream for the duration of the block.
  #
  #   silence_stream(STDOUT) do
  #     puts 'This will never be seen'
  #   end
  #
  #   puts 'But this will'
  def silence_stream(stream)
    old_stream = stream.dup
    stream.reopen(Config::CONFIG['host_os'] =~ /mswin|mingw/ ? 'NUL:' : '/dev/null')
    stream.sync = true
    yield
  ensure
    stream.reopen(old_stream)
  end

  # Blocks and ignores any exception passed as argument if raised within the block.
  #
  #   suppress(ZeroDivisionError) do
  #     1/0
  #     puts "This code is NOT reached"
  #   end
  #
  #   puts "This code gets executed and nothing related to ZeroDivisionError was seen"
  def suppress(*exception_classes)
    begin yield
    rescue Exception => e
      raise unless exception_classes.any? { |cls| e.kind_of?(cls) }
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
activesupport-3.0.0.rc lib/active_support/core_ext/kernel/reporting.rb
csd-0.1.5 lib/active_support/core_ext/kernel/reporting.rb
csd-0.1.4 lib/active_support/core_ext/kernel/reporting.rb
csd-0.1.3 lib/active_support/core_ext/kernel/reporting.rb
csd-0.1.2 lib/active_support/core_ext/kernel/reporting.rb
csd-0.1.1 lib/active_support/core_ext/kernel/reporting.rb
csd-0.1.0 lib/active_support/core_ext/kernel/reporting.rb
csd-0.0.16 lib/active_support/core_ext/kernel/reporting.rb
activesupport-3.0.0.beta4 lib/active_support/core_ext/kernel/reporting.rb