Sha256: 97c74ccc7303420c87549fcc59bb3a61c604bddace35c9a7d74609f6c41ab492

Contents?: true

Size: 968 Bytes

Versions: 25

Compression:

Stored size: 968 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

25 entries across 23 versions & 5 rubygems

Version Path
activesupport-6.0.2.2 lib/active_support/testing/stream.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/stream.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.2.1/lib/active_support/testing/stream.rb
activesupport-6.0.2.1 lib/active_support/testing/stream.rb
activesupport-6.0.2 lib/active_support/testing/stream.rb
activesupport-6.0.2.rc2 lib/active_support/testing/stream.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/activesupport-6.0.0/lib/active_support/testing/stream.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/stream.rb
activesupport-6.0.2.rc1 lib/active_support/testing/stream.rb
zuora_connect_ui-0.9.2 vendor/ruby/2.6.0/gems/activesupport-6.0.0/lib/active_support/testing/stream.rb
zuora_connect_ui-0.9.2 vendor/ruby/2.6.0/gems/activesupport-6.0.1/lib/active_support/testing/stream.rb
activesupport-6.0.1 lib/active_support/testing/stream.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activesupport-6.0.0/lib/active_support/testing/stream.rb
activesupport-6.0.1.rc1 lib/active_support/testing/stream.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activesupport-6.0.0/lib/active_support/testing/stream.rb
zuora_connect_ui-0.9.1 vendor/ruby/2.6.0/gems/activesupport-6.0.0/lib/active_support/testing/stream.rb
zuora_connect_ui-0.9.0 vendor/ruby/2.6.0/gems/activesupport-6.0.0/lib/active_support/testing/stream.rb
zuora_connect_ui-0.8.3 vendor/ruby/2.6.0/gems/activesupport-6.0.0/lib/active_support/testing/stream.rb
zuora_connect_ui-0.8.2 vendor/ruby/2.6.0/gems/activesupport-6.0.0/lib/active_support/testing/stream.rb
activesupport-6.0.0 lib/active_support/testing/stream.rb