Class: Bundler::UI::RGProxy

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

Instance Method Summary collapse

Constructor Details

#initialize(ui) ⇒ RGProxy

Returns a new instance of RGProxy.



57
58
59
# File 'lib/bundler/ui.rb', line 57

def initialize(ui)
  @ui = ui
end

Instance Method Details

#say(message) ⇒ Object



61
62
63
64
65
66
67
# File 'lib/bundler/ui.rb', line 61

def say(message)
  if message =~ /native extensions/
    @ui.info "with native extensions "
  else
    @ui.debug(message)
  end
end