Sha256: 17366c9e032dd0fead75df7c1db10bfe574bae8d1b9b839ff2cd2ceaf28d0eb4

Contents?: true

Size: 767 Bytes

Versions: 155

Compression:

Stored size: 767 Bytes

Contents

# frozen_string_literal: true

#
# This code is based on https://github.com/fohte/rubocop-daemon.
#
# Copyright (c) 2018 Hayato Kawai
#
# The MIT License (MIT)
#
# https://github.com/fohte/rubocop-daemon/blob/master/LICENSE.txt
#
module RuboCop
  module Server
    # This module has a helper method for `RuboCop::Server::SocketReader`.
    # @api private
    module Helper
      def self.redirect(stdin: $stdin, stdout: $stdout, stderr: $stderr, &_block)
        old_stdin = $stdin.dup
        old_stdout = $stdout.dup
        old_stderr = $stderr.dup

        $stdin = stdin
        $stdout = stdout
        $stderr = stderr

        yield
      ensure
        $stdin = old_stdin
        $stdout = old_stdout
        $stderr = old_stderr
      end
    end
  end
end

Version data entries

155 entries across 154 versions & 16 rubygems

Version Path
fablicop-1.10.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/helper.rb
rubocop-1.54.1 lib/rubocop/server/helper.rb
rubocop-1.54.0 lib/rubocop/server/helper.rb
rubocop-1.53.1 lib/rubocop/server/helper.rb
rubocop-1.53.0 lib/rubocop/server/helper.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.52.1/lib/rubocop/server/helper.rb
fablicop-1.10.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.52.1/lib/rubocop/server/helper.rb
rubocop-1.52.1 lib/rubocop/server/helper.rb
rubocop-1.52.0 lib/rubocop/server/helper.rb
rubocop-1.51.0 lib/rubocop/server/helper.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/rubocop-1.50.2/lib/rubocop/server/helper.rb
rubocop-1.50.2 lib/rubocop/server/helper.rb
rubocop-1.50.1 lib/rubocop/server/helper.rb
rubocop-1.50.0 lib/rubocop/server/helper.rb
rubocop-1.49.0 lib/rubocop/server/helper.rb