Class: Bundler::UI::RGProxy

Inherits:
Gem::SilentUI show all
Defined in:
lib/bundler/ui/rg_proxy.rb

Instance Attribute Summary

Attributes inherited from Gem::StreamUI

#errs, #ins, #outs

Instance Method Summary collapse

Methods inherited from Gem::SilentUI

#close, #download_reporter, #progress_reporter

Methods inherited from Gem::StreamUI

#_gets_noecho, #alert, #alert_error, #alert_warning, #ask, #ask_for_password, #ask_yes_no, #backtrace, #choose_from_list, #close, #download_reporter, #progress_reporter, #require_io_console, #terminate_interaction, #tty?

Methods included from Gem::Deprecate

#deprecate, next_rubygems_major_version, rubygems_deprecate, rubygems_deprecate_command, skip, skip=, skip_during

Constructor Details

#initialize(ui) ⇒ RGProxy

Returns a new instance of RGProxy.



9
10
11
12
# File 'lib/bundler/ui/rg_proxy.rb', line 9

def initialize(ui)
  @ui = ui
  super()
end

Instance Method Details

#say(message) ⇒ Object



14
15
16
# File 'lib/bundler/ui/rg_proxy.rb', line 14

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