Sha256: b2e46318fc2a4429593802dd5dd8cf0edaf72013ff390a258a26d99a258875ee
Contents?: true
Size: 237 Bytes
Versions: 7
Compression:
Stored size: 237 Bytes
Contents
module FileTest module_function # Does the +parent+ contain the +child+? def contains?(child, parent=Dir.pwd) parent = File.expand_path(parent) child = File.expand_path(child) child.sub(parent,'') != child end end
Version data entries
7 entries across 6 versions & 2 rubygems