Sha256: f77759caf1d89cea0897ee7088a6e114a9d8897d44eb646428506a686eb86127

Contents?: true

Size: 670 Bytes

Versions: 7

Compression:

Stored size: 670 Bytes

Contents

# frozen_string_literal: true

module Spout
  module Helpers
    # Silences output for tests
    module Quietly
      # From Rails: http://apidock.com/rails/v3.2.13/Kernel/silence_stream
      def silence_stream(stream)
        old_stream = stream.dup
        stream.reopen(/mswin|mingw/ =~ RbConfig::CONFIG['host_os'] ? 'NUL:' : '/dev/null')
        stream.sync = true
        yield
      ensure
        stream.reopen(old_stream)
      end

      # From Rails: http://apidock.com/rails/v3.2.13/Kernel/quietly
      def quietly
        silence_stream(STDOUT) do
          silence_stream(STDERR) do
            yield
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
spout-0.12.1 lib/spout/helpers/quietly.rb
spout-0.12.0 lib/spout/helpers/quietly.rb
spout-0.12.0.rc2 lib/spout/helpers/quietly.rb
spout-0.12.0.rc lib/spout/helpers/quietly.rb
spout-0.12.0.beta2 lib/spout/helpers/quietly.rb
spout-0.12.0.beta1 lib/spout/helpers/quietly.rb
spout-0.11.1 lib/spout/helpers/quietly.rb