Module: PathUtils
- Defined in:
- lib/hash_delegator.rb
Class Method Summary collapse
-
.resolve_path_or_substitute(path, expression) ⇒ String
Determines if a given path is absolute or substitutes a placeholder in an expression with the path.
Class Method Details
.resolve_path_or_substitute(path, expression) ⇒ String
Determines if a given path is absolute or substitutes a placeholder in an expression with the path.
357 358 359 360 361 362 363 |
# File 'lib/hash_delegator.rb', line 357 def self.resolve_path_or_substitute(path, expression) if path.include?('/') path else expression.gsub('*', path) end end |