Sha256: ad238c3b3f0453a3689b2962d576b9201a5736d4b206afedcadeebb87879d407

Contents?: true

Size: 975 Bytes

Versions: 49

Compression:

Stored size: 975 Bytes

Contents

# frozen_string_literal: true

module ActiveSupport
  module Testing
    module Stream #:nodoc:
      private

        def silence_stream(stream)
          old_stream = stream.dup
          stream.reopen(IO::NULL)
          stream.sync = true
          yield
        ensure
          stream.reopen(old_stream)
          old_stream.close
        end

        def quietly
          silence_stream(STDOUT) do
            silence_stream(STDERR) do
              yield
            end
          end
        end

        def capture(stream)
          stream = stream.to_s
          captured_stream = Tempfile.new(stream)
          stream_io = eval("$#{stream}")
          origin_stream = stream_io.dup
          stream_io.reopen(captured_stream)

          yield

          stream_io.rewind
          return captured_stream.read
        ensure
          captured_stream.close
          captured_stream.unlink
          stream_io.reopen(origin_stream)
        end
    end
  end
end

Version data entries

49 entries across 49 versions & 8 rubygems

Version Path
activesupport-5.2.8.1 lib/active_support/testing/stream.rb
activesupport-5.2.8 lib/active_support/testing/stream.rb
activesupport-5.2.7.1 lib/active_support/testing/stream.rb
activesupport-5.2.7 lib/active_support/testing/stream.rb
activesupport-5.2.6.3 lib/active_support/testing/stream.rb
activesupport-5.2.6.2 lib/active_support/testing/stream.rb
activesupport-5.2.6.1 lib/active_support/testing/stream.rb
activesupport-5.2.6 lib/active_support/testing/stream.rb
activesupport-5.2.4.6 lib/active_support/testing/stream.rb
activesupport-5.2.5 lib/active_support/testing/stream.rb
activesupport-5.2.4.5 lib/active_support/testing/stream.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.4.1/lib/active_support/testing/stream.rb
activesupport-5.2.4.4 lib/active_support/testing/stream.rb
activesupport-5.2.4.3 lib/active_support/testing/stream.rb
activesupport-5.2.4.2 lib/active_support/testing/stream.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/activesupport-5.2.4.1/lib/active_support/testing/stream.rb
activesupport-5.2.4.1 lib/active_support/testing/stream.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/testing/stream.rb
activesupport-5.2.4 lib/active_support/testing/stream.rb
activesupport-5.2.4.rc1 lib/active_support/testing/stream.rb