descend()
Instance Public methods
Iterates over and yields a new Pathname object for each element in the given path in descending order.
1 2 3 4 5 6 7 8 9 10 11 12 | Pathname. new ( '/path/to/some/file.rb' ).descend {|v| p v} #<Pathname:/> #<Pathname:/path> #<Pathname:/path/to> #<Pathname:/path/to/some> #<Pathname:/path/to/some/file.rb> Pathname. new ( 'path/to/some/file.rb' ).descend {|v| p v} #<Pathname:path> #<Pathname:path/to> #<Pathname:path/to/some> #<Pathname:path/to/some/file.rb> |
It doesn't access the filesystem.
Please login to continue.