Sha256: c9e166d71d3055f3f51ff996587e31838c851dd1ad5316c068c621039f9cd0c3

Contents?: true

Size: 967 Bytes

Versions: 68

Compression:

Stored size: 967 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
          captured_stream.read
        ensure
          captured_stream.close
          captured_stream.unlink
          stream_io.reopen(origin_stream)
        end
    end
  end
end

Version data entries

68 entries across 68 versions & 9 rubygems

Version Path
activesupport-6.1.7.10 lib/active_support/testing/stream.rb
activesupport-6.1.7.9 lib/active_support/testing/stream.rb
activesupport-6.1.7.8 lib/active_support/testing/stream.rb
activesupport-6.1.7.7 lib/active_support/testing/stream.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/testing/stream.rb
activesupport-6.1.7.6 lib/active_support/testing/stream.rb
activesupport-6.1.7.5 lib/active_support/testing/stream.rb
activesupport-6.1.7.4 lib/active_support/testing/stream.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/testing/stream.rb
mumukit-content-type-1.12.1 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/testing/stream.rb
mumukit-content-type-1.12.0 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/testing/stream.rb
activesupport-6.1.7.3 lib/active_support/testing/stream.rb
activesupport-6.1.7.2 lib/active_support/testing/stream.rb
activesupport-6.1.7.1 lib/active_support/testing/stream.rb
activesupport-6.0.6.1 lib/active_support/testing/stream.rb
activesupport-6.1.7 lib/active_support/testing/stream.rb
activesupport-6.0.6 lib/active_support/testing/stream.rb
activesupport-6.1.6.1 lib/active_support/testing/stream.rb
activesupport-6.0.5.1 lib/active_support/testing/stream.rb
activesupport-6.0.5 lib/active_support/testing/stream.rb