Class: Vagrant::Action::VM::ClearForwardedPorts
- Inherits:
-
Object
- Object
- Vagrant::Action::VM::ClearForwardedPorts
- Defined in:
- lib/vagrant/action/vm/clear_forwarded_ports.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ ClearForwardedPorts
constructor
A new instance of ClearForwardedPorts.
Constructor Details
#initialize(app, env) ⇒ ClearForwardedPorts
Returns a new instance of ClearForwardedPorts.
5 6 7 |
# File 'lib/vagrant/action/vm/clear_forwarded_ports.rb', line 5 def initialize(app, env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
9 10 11 12 13 14 |
# File 'lib/vagrant/action/vm/clear_forwarded_ports.rb', line 9 def call(env) env[:ui].info I18n.t("vagrant.actions.vm.clear_forward_ports.deleting") env[:vm].driver.clear_forwarded_ports @app.call(env) end |