Sha256: d25a5681e155a0c864204fc0bff94943c40feb3a6735132a9af122b5a5ac4645
Contents?: true
Size: 446 Bytes
Versions: 9
Compression:
Stored size: 446 Bytes
Contents
class Directory { """ Instances of @Directory@ represent directories in the filesystem of the operating system, in which Fancy is being run. """ def self exists?: dirname { """ @dirname Path of @Directory@ to check for existance. @@return @true, if @Directory@ exists, @false otherwise. Indicates, if a Directory exists with a given pathname. """ (File exists?: dirname) and: (File directory?: dirname) } }
Version data entries
9 entries across 9 versions & 1 rubygems