Class: Bundler::UI::RGProxy

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

Instance Method Summary collapse

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 && @ui.debug(message)
end