Class: Utils::ConfigFile::SyncDir
- Inherits:
-
BlockConfig
- Object
- BlockConfig
- Utils::ConfigFile::SyncDir
- Defined in:
- lib/utils/config_file.rb
Instance Method Summary collapse
-
#skip?(path) ⇒ TrueClass, FalseClass
The skip? method determines whether a given path should be skipped based on the skip_path pattern.
Methods inherited from BlockConfig
config, inherited, #initialize, #to_ruby
Constructor Details
This class inherits a constructor from Utils::ConfigFile::BlockConfig
Instance Method Details
#skip?(path) ⇒ TrueClass, FalseClass
The skip? method determines whether a given path should be skipped based on the skip_path pattern.
This method checks if the provided path matches the internal skip_path regular expression, returning true if the path should be excluded from processing, or false otherwise.
pattern, false otherwise
713 714 715 |
# File 'lib/utils/config_file.rb', line 713 def skip?(path) path =~ skip_path end |