mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 05:25:34 +02:00
19 lines
304 B
Ruby
19 lines
304 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "../ui"
|
|
require "rubygems/user_interaction"
|
|
|
|
module Bundler
|
|
module UI
|
|
class RGProxy < ::Gem::SilentUI
|
|
def initialize(ui)
|
|
@ui = ui
|
|
super()
|
|
end
|
|
|
|
def say(message)
|
|
@ui&.debug(message)
|
|
end
|
|
end
|
|
end
|
|
end
|