Sha256: 268d5f53e79d2660a088fc5b4883ee8f67f50ae4fd0357b01ea36ca771330322
Contents?: true
Size: 467 Bytes
Versions: 26
Compression:
Stored size: 467 Bytes
Contents
class Dir # Is a path parental to another? #-- # TODO Needs work #++ def self.ancestor?(parent_path, child_path) %r|^#{Regexp.escape(parent_path)}| =~ child_path end end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCDir < Test::Unit::TestCase def test_ancestor assert( Dir.ancestor?( "a/b/c", "a/b/c/d" ) ) end end =end
Version data entries
26 entries across 26 versions & 1 rubygems