Sha256: 0b82cafb3b25f3c09affda3b0ac2028430642474334db7f5555306b82fe8ace6

Contents?: true

Size: 974 Bytes

Versions: 43

Compression:

Stored size: 974 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(&block)
          silence_stream(STDOUT) do
            silence_stream(STDERR, &block)
          end
        end

        def capture(stream)
          stream = stream.to_s
          captured_stream = Tempfile.new(stream)
          stream_io = eval("$#{stream}", binding, __FILE__, __LINE__)
          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

43 entries across 43 versions & 7 rubygems

Version Path
omg-activesupport-8.0.0.alpha2 lib/active_support/testing/stream.rb
omg-activesupport-8.0.0.alpha1 lib/active_support/testing/stream.rb
activesupport-7.1.4 lib/active_support/testing/stream.rb
activesupport-7.2.1 lib/active_support/testing/stream.rb
activesupport-7.2.0 lib/active_support/testing/stream.rb
activesupport-7.2.0.rc1 lib/active_support/testing/stream.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3.4/lib/active_support/testing/stream.rb
activesupport-7.2.0.beta3 lib/active_support/testing/stream.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/activesupport-7.1.3.4/lib/active_support/testing/stream.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/activesupport-7.1.3.4/lib/active_support/testing/stream.rb
activesupport-7.2.0.beta2 lib/active_support/testing/stream.rb
activesupport-7.1.3.4 lib/active_support/testing/stream.rb
activesupport-7.2.0.beta1 lib/active_support/testing/stream.rb
activesupport-7.1.3.2 lib/active_support/testing/stream.rb
activesupport-7.1.3.1 lib/active_support/testing/stream.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3/lib/active_support/testing/stream.rb
activesupport-7.1.3 lib/active_support/testing/stream.rb
activesupport-7.1.2 lib/active_support/testing/stream.rb
activesupport-7.1.1 lib/active_support/testing/stream.rb
activesupport-7.1.0 lib/active_support/testing/stream.rb