module Tapioca

typed: strong

typed: strong

typed: strict

typed: strict

typed: strict

typed: strict

typed: strong

Constants

VERSION

Public Class Methods

silence_warnings(&blk) click to toggle source
# File lib/tapioca.rb, line 7
def self.silence_warnings(&blk)
  original_verbosity = $VERBOSE
  $VERBOSE = nil
  Gem::DefaultUserInteraction.use_ui(Gem::SilentUI.new) do
    blk.call
  end
ensure
  $VERBOSE = original_verbosity
end