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.



7
8
9
10
# File 'lib/bundler/ui/rg_proxy.rb', line 7

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

Instance Method Details

#say(message) ⇒ Object



12
13
14
# File 'lib/bundler/ui/rg_proxy.rb', line 12

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