Sha256: 8fcbbaceadb8f3f2325c55df227b9b89c355557f2be094c6bfa312af8fb24f7c
Contents?: true
Size: 493 Bytes
Versions: 5
Compression:
Stored size: 493 Bytes
Contents
#!/bin/bash #/ NAME #/ usda -- runs test against meaty libraries using arbitrary arguments #/ #/ SYNOPSIS #/ usda one two three shome="$(cd -P -- "$(dirname -- "$0")/.." && pwd -P)" source "$shome/bin/_prime" "$@" function gamut { "$shome/bin/meat" "$@" pushd "$shome/bin" > /dev/null ./meat "$@" popd > /dev/null meat "$@" } function main { gamut "$@" gamut --prime "$@" } parse_command_line "$@" || exit $? eval set -- "${FLAGS_ARGV}" main "$@" | sort | uniq -c
Version data entries
5 entries across 5 versions & 1 rubygems