Method: Autobuild::Environment#declare_path_variable
- Defined in:
- lib/autobuild/environment.rb
#declare_path_variable(name) ⇒ Object
Declares that the given environment variable holds a path
Non-existent paths in these variables are filtered out. It is called automatically if one of the ‘path’ methods are called (#set_path, #push_path, …)
132 133 134 |
# File 'lib/autobuild/environment.rb', line 132 def declare_path_variable(name) path_variables << name end |