Sha256: 5377f1150bca0931f79d9e9276e561d8544ea892c6c3a494d11fb4c51bf59301
Contents?: true
Size: 1002 Bytes
Versions: 3
Compression:
Stored size: 1002 Bytes
Contents
class Dir # TODO: Make instance method versions ? # Ascend a directory path. # # Dir.ascend("/var/log") do |path| # p path # end # # _produces_ # # /var/log # /var # / # # CREDIT: Daniel Berger, Jeffrey Schwab # # TODO: make it work with windows too # use FileTest.root? def self.ascend(dir, inclusive=true, &blk) dir = dir.dup blk.call(dir) if inclusive ri = dir.rindex('/') while ri dir = dir.slice(0...ri) if dir == "" blk.call('/') ; break end blk.call( dir ) ri = dir.rindex('/') end end # Descend a directory path. # # Dir.descend("/var/log") do |path| # p path # end # # _produces_ # # / # /var # /var/log # # CREDIT: Daniel Berger, Jeffrey Schwab def self.descend(path) #:yield: paths = path.split('/') paths.size.times do |n| pth = File.join(*paths[0..n]) pth = "/" if pth == "" yield(pth) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
facets-2.8.4 | lib/core/facets/dir/ascend.rb |
facets-2.8.3 | lib/core/facets/dir/ascend.rb |
facets-2.8.2 | lib/core/facets/dir/ascend.rb |