Skip to content
This repository was archived by the owner on Apr 3, 2026. It is now read-only.

Latest commit

 

History

History
22 lines (17 loc) · 498 Bytes

File metadata and controls

22 lines (17 loc) · 498 Bytes

Mast

Archived. Mast generates file manifests and checksums for project packages. Today the same can be accomplished with simple shell commands:

# List all files:
git ls-files > MANIFEST

# With checksums:
find . -not -path './.git/*' -type f -exec sha256sum {} \; | sort > DIGEST

This repository is preserved for historical reference.

See README.rdoc for full documentation.

Copyright

Copyright (c) 2009 Thomas Sawyer, Rubyworks

BSD-2-Clause License.