File Manager

Path: /opt/chef.upgrade/embedded/lib/ruby/gems/2.3.0/gems/bundler-1.12.5/lib/bundler/ui/

Viewing File: rg_proxy.rb

# frozen_string_literal: true
require "bundler/ui"
require "rubygems/user_interaction"

module Bundler
  module UI
    class RGProxy < ::Gem::SilentUI
      def initialize(ui)
        @ui = ui
        super()
      end

      def say(message)
        @ui && @ui.debug(message)
      end
    end
  end
end