No Description

Getty Ritter a4204836df Merge branch 'master' of github.com:aisamanra/cab 6 years ago
src 695a1ad8bc Add old- aliases for old commands 6 years ago
.gitignore 6b83a4f594 Small but working `cab` binary, w/ docs and README 6 years ago
Cargo.toml 25aac93d2d Add some extra Cargo metadata 6 years ago
LICENSE 25aac93d2d Add some extra Cargo metadata 6 years ago
README.md 3f75db2c1d add experimental badge 6 years ago

README.md

cab

In short: write cab build instead of cabal new-build, and save six keystrokes.

The cab tool is a tiny wrapper around Haskell's [cabal]() package-building tool that rewrites the argument list so that the "new-style" project commands can be invoked without the new- prefix. Otherwise, it simply passes on all other arguments to cabal unmodified, and thus should be mostly a drop-in convenience tool to shorten some cabal invocations.

Example Usages

# cab-specific usage help
$ cab --cab-help
# standard cabal help
$ cab --help
# building a project using a new-style build
$ cab build
# configuring a project using a new-style build
$ cab configure --enable-tests
# running an application
$ cab run

Warning

As of the time of writing, cab's logic is very simplistic: it rewrites based on a set of known strings and tries to only rewrite values once. Consequently, an invocation like cab test run will rewrite to cabal new-test run, but it does mean that, in rare and unusual cases, it might apply this logic incorrectly. In the future, cab ought to properly replicate (a subset of) Cabal's command-line parsing logic, but it does not yet!