This module contains gradha's tweaks and
shortcuts for the Nim programming language. You can
read pre generated documentation at http://gradha.github.io/badger_bits/. You
can also generate this documentation locally typing nake doc once you have
the software on your machine.
This is development version 0.2.5. For a list of changes see the docs/changes.rst file.
Install the Nim compiler. Then use Nim's Nimble package manager to install locally the GitHub checkout:
$ git clone https://github.com/gradha/badger_bits.git $ cd badger_bits $ nimble install -y
If you don't mind downloading the git repository every time, you can also tell Nimble to install the latest development version directly from git:
$ nimble install -y https://github.com/gradha/badger_bits.git@#head
The stable version is usually meant to be used as a dependency for another project. You would have to add the following to your nimble spec:
[Deps] Requires: "https://github.com/gradha/badger_bits.git@#stable"
Alternatively you could use a specific tag:
[Deps] Requires: "https://github.com/gradha/badger_bits.git@#vX.Y.Z"
This project uses the git-flow branching model with reversed defaults. Stable releases are tracked in the stable branch. Development happens in the default master branch.
You can send me feedback through GitHub's issue tracker. You can also ask for generic Nim development help at Nim's forums.