class Vagrant::UI::Silent

This is a UI implementation that does nothing.

Public Instance Methods

ask(*args, **opts) click to toggle source
Calls superclass method
# File lib/vagrant/ui.rb, line 95
def ask(*args, **opts)
  super

  # Silent can't do this, obviously.
  raise Errors::UIExpectsTTY
end