Class: Vagrant::Action::VM::ClearNFSExports
- Inherits:
-
Object
- Object
- Vagrant::Action::VM::ClearNFSExports
- Includes:
- NFSHelpers
- Defined in:
- lib/vagrant/action/vm/clear_nfs_exports.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ ClearNFSExports
constructor
A new instance of ClearNFSExports.
Methods included from NFSHelpers
Constructor Details
#initialize(app, env) ⇒ ClearNFSExports
Returns a new instance of ClearNFSExports.
9 10 11 |
# File 'lib/vagrant/action/vm/clear_nfs_exports.rb', line 9 def initialize(app, env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
13 14 15 16 |
# File 'lib/vagrant/action/vm/clear_nfs_exports.rb', line 13 def call(env) clear_nfs_exports(env) @app.call(env) end |