Method: Arrow::Path#each
- Defined in:
- lib/arrow/path.rb
#each(&block) ⇒ Object
Enumerable interface method. Iterate over the list of valid dirs in this path, calling the specified block for each.
173 174 175 |
# File 'lib/arrow/path.rb', line 173 def each( &block ) self.valid_dirs.each( &block ) end |