Method: VagrantPlugins::RemoteShell#print
- Defined in:
- lib/niman/vagrant/shell.rb
#print(message, type) ⇒ Object
39 40 41 42 43 44 45 46 |
# File 'lib/niman/vagrant/shell.rb', line 39 def print(, type) case type when :error @machine.ui.error(, {:color => :red}) else @machine.ui.info(, {:color => :green}) end end |