Sha256: 7fd844a7b0f619d51959c629279ac7d3eff47930c2c013b2cd46b77ffb05cec7

Contents?: true

Size: 998 Bytes

Versions: 2

Compression:

Stored size: 998 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

2 entries across 2 versions & 1 rubygems

Version Path
facets-2.8.1 lib/core/facets/dir/ascend.rb
facets-2.8.0 lib/core/facets/dir/ascend.rb