Class: VagrantPlugins::Fsnotify::Config
- Inherits:
-
Object
- Object
- VagrantPlugins::Fsnotify::Config
- Defined in:
- lib/vagrant-fsnotify/config-fsnotify.rb
Instance Attribute Summary collapse
-
#touch ⇒ Object
Returns the value of attribute touch.
Instance Method Summary collapse
- #finalize! ⇒ Object
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
20 21 22 |
# File 'lib/vagrant-fsnotify/config-fsnotify.rb', line 20 def initialize @touch = UNSET_VALUE end |
Instance Attribute Details
#touch ⇒ Object
Returns the value of attribute touch.
18 19 20 |
# File 'lib/vagrant-fsnotify/config-fsnotify.rb', line 18 def touch @touch end |
Instance Method Details
#finalize! ⇒ Object
24 25 26 |
# File 'lib/vagrant-fsnotify/config-fsnotify.rb', line 24 def finalize! @touch = [:modification, :access] if @touch == UNSET_VALUE end |