Granular.jl

Julia package for granular dynamics simulation
git clone git://src.adamsgaard.dk/Granular.jl
Log | Files | Refs | README | LICENSE

commit b9871a74c1289f2d04517636331f75e4432bc580
parent 2f24a09c7a4b74f8f45d3ab96f459a135018e546
Author: Anders Damsgaard <andersd@riseup.net>
Date:   Sat,  4 Nov 2017 22:55:09 -0400

update manual to point to tagged release in Julia METADATA

Diffstat:
Mdocs/src/man/installation.md | 14++++----------
1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/docs/src/man/installation.md b/docs/src/man/installation.md @@ -2,13 +2,13 @@ Granular.jl can be installed directly from the Julia shell by: ```julia-repl -julia> Pkg.clone("git://github.com/anders-dc/Granular.jl.git") +julia> Pkg.add("Granular") ``` This will install the contents of this repository in the folder -`~/.julia/v$(JULIA_VERSION)/Granular` and install its requirements. The package [JLD](https://github.com/JuliaIO/JLD.jl) -is used for model restarts and is recommended but not required, and is thus not -automatically installed. +`~/.julia/v$(JULIA_VERSION)/Granular` and install its requirements. The +package [JLD](https://github.com/JuliaIO/JLD.jl) is used for model restarts and +is recommended but not required, and is thus not automatically installed. You can run the package tests, which are contained in the `test/` directory, with the following command: @@ -16,9 +16,3 @@ the following command: ```julia-repl julia> Pkg.test("Granular") ``` - -The package can be updated from this repository using: - -```julia-repl -julia> Pkg.update("Granular") -```