class Bundler::UI::RGProxy

Parent:
Gem::SilentUI

Public Class Methods

new(ui) Show source
# File lib/bundler/ui/rg_proxy.rb, line 9
def initialize(ui)
  @ui = ui
  super()
end
Calls superclass method Gem::SilentUI::new

Public Instance Methods

say(message) Show source
# File lib/bundler/ui/rg_proxy.rb, line 14
def say(message)
  @ui && @ui.debug(message)
end

Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.