Sha256: 89b5d44919bab71d6589ba46b39605d11e2f2b16cf44d9fdc0689b465c78e184

Contents?: true

Size: 944 Bytes

Versions: 23

Compression:

Stored size: 944 Bytes

Contents

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

23 entries across 23 versions & 3 rubygems

Version Path
activesupport-5.1.7 lib/active_support/testing/stream.rb
activesupport-5.1.7.rc1 lib/active_support/testing/stream.rb
activesupport-5.1.6.2 lib/active_support/testing/stream.rb
activesupport-5.1.6.1 lib/active_support/testing/stream.rb
activesupport-5.1.6 lib/active_support/testing/stream.rb
tdiary-5.0.8 vendor/bundle/gems/activesupport-5.1.5/lib/active_support/testing/stream.rb
activesupport-5.1.5 lib/active_support/testing/stream.rb
activesupport-5.1.5.rc1 lib/active_support/testing/stream.rb
pract6-0.1.0 .gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/testing/stream.rb
activesupport-5.1.4 lib/active_support/testing/stream.rb
activesupport-5.1.4.rc1 lib/active_support/testing/stream.rb
activesupport-5.1.3 lib/active_support/testing/stream.rb
activesupport-5.1.3.rc3 lib/active_support/testing/stream.rb
activesupport-5.1.3.rc2 lib/active_support/testing/stream.rb
activesupport-5.1.3.rc1 lib/active_support/testing/stream.rb
tdiary-5.0.5 vendor/bundle/gems/activesupport-5.1.2/lib/active_support/testing/stream.rb
activesupport-5.1.2 lib/active_support/testing/stream.rb
activesupport-5.1.2.rc1 lib/active_support/testing/stream.rb
activesupport-5.1.1 lib/active_support/testing/stream.rb
activesupport-5.1.0 lib/active_support/testing/stream.rb