Read the documentation online here: http://rmculpepper.github.io/gamble/
Installing gamble
also builds its documentation on your system, and it is available via raco docs gamble
or Help, Racket Documentation in DrRacket.
Racket version 6.3 or later is required.
- Get Racket here: http://racket-lang.org
The following instructions assume you want to write programs using the latest version of gamble
but not develop gamble
itself. The install and update commands automatically fetch the latest version of gamble
from github.
- Install this repository as a Racket package.
- command line:
raco pkg install git://github.com/rmculpepper/gamble
- or DrRacket: File menu, Install Package, and enter
git://github.com/rmculpepper/gamble
.
- Periodically update to the most recent version of the package.
- command line:
raco pkg update gamble
- or DrRacket: File menu, Package Mangager, Currently Installed, Update.
The following instructions assume you want to write programs using a specific snapshot of gamble
without updating to the latest available github version.
- If you had already installed
gamble
using the instructions above, remove it.
- command line:
raco pkg remove gamble
- Extract the snapshot into a directory like gamble-snapshot-vvvvvv" (where vvvvvv is the snapshot version).
- command line:
tar xzf gamble-snapshot-vvvvvvv.tar.gz
- Install the snapshot version of
gamble
as a Racket package.
raco pkg install --link gamble-snapshot-vvvv
The following instructions assume you want to develop gamble
- If you had already installed
gamble
using the instructions above, remove it.
- command line:
raco pkg remove gamble
- Clone this repository (http://github.com/rmculpepper/gamble)
- If you have a github account,
git clone git@github.com:rmculpepper/gamble.git
- If you do not:
git clone https://github.com/rmculpepper/gamble.git
- Install the checked-out repository as a Racket package.
raco pkg install --link <path-to-gamble-checkout>
- Periodically update to the the most recent version of
gamble
.
- run
git pull
on the repository - run
raco setup gamble
to recompile the new code and rebuild the local documentation