Class: VagrantBindfs::Vagrant::Actions::Mounter
- Inherits:
-
Object
- Object
- VagrantBindfs::Vagrant::Actions::Mounter
- Includes:
- Concerns::Log, Concerns::Machine
- Defined in:
- lib/vagrant-bindfs/vagrant/actions/mounter.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#app ⇒ Object
readonly
Returns the value of attribute app.
-
#env ⇒ Object
readonly
Returns the value of attribute env.
-
#hook ⇒ Object
readonly
Returns the value of attribute hook.
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env, hook) ⇒ Mounter
constructor
A new instance of Mounter.
Methods included from Concerns::Log
#debug, #detail, #error, #info, #logger, #warn
Methods included from Concerns::Machine
#bound_folders, #config, #guest, #machine
Constructor Details
#initialize(app, env, hook) ⇒ Mounter
Returns a new instance of Mounter.
14 15 16 17 18 |
# File 'lib/vagrant-bindfs/vagrant/actions/mounter.rb', line 14 def initialize(app, env, hook) @app = app @env = env @hook = hook end |
Instance Attribute Details
#app ⇒ Object (readonly)
Returns the value of attribute app.
7 8 9 |
# File 'lib/vagrant-bindfs/vagrant/actions/mounter.rb', line 7 def app @app end |
#env ⇒ Object (readonly)
Returns the value of attribute env.
7 8 9 |
# File 'lib/vagrant-bindfs/vagrant/actions/mounter.rb', line 7 def env @env end |
#hook ⇒ Object (readonly)
Returns the value of attribute hook.
7 8 9 |
# File 'lib/vagrant-bindfs/vagrant/actions/mounter.rb', line 7 def hook @hook end |
Instance Method Details
#call(env) ⇒ Object
20 21 22 23 24 25 |
# File 'lib/vagrant-bindfs/vagrant/actions/mounter.rb', line 20 def call(env) app.call(env) return if bound_folders(hook).empty? bind_folders! end |