Added link to Goldsmith in README.
This commit is contained in:
parent
dce1b603a3
commit
d52b563f92
|
@ -2,13 +2,17 @@
|
||||||
|
|
||||||
Core cellular automaton engine for MicroWorld.
|
Core cellular automaton engine for MicroWorld.
|
||||||
|
|
||||||
## Part of the overall Microworld system
|
## Part of the overall MicroWorld system
|
||||||
|
|
||||||
While this code works and is interesting on its own, you also need at least
|
While this code works and is interesting on its own, you also need at least
|
||||||
[mw-parser](https://github.com/simon-brooke/mw-parser) and
|
[mw-parser](https://github.com/simon-brooke/mw-parser) and
|
||||||
[mw-ui](https://github.com/simon-brooke/mw-ui). There will be other
|
[mw-ui](https://github.com/simon-brooke/mw-ui). There will be other
|
||||||
modules in due course.
|
modules in due course.
|
||||||
|
|
||||||
|
You can see MicroWorld in action [here](http://www.journeyman.cc/microworld/) -
|
||||||
|
but please don't be mean to my poor little server. If you want to run big maps
|
||||||
|
or complex rule-sets, please run it on your own machines.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
Primary entry points are make-world and run-world, both in mw-engine.core. See
|
Primary entry points are make-world and run-world, both in mw-engine.core. See
|
||||||
|
|
|
@ -99,6 +99,9 @@ do
|
||||||
-f|-fullname)
|
-f|-fullname)
|
||||||
shift;
|
shift;
|
||||||
fullname=$1;;
|
fullname=$1;;
|
||||||
|
-p|-pull)
|
||||||
|
# pull from remote Git origin
|
||||||
|
git pull origin master;;
|
||||||
-r|-release)
|
-r|-release)
|
||||||
# release is branch a release and upversion to new label
|
# release is branch a release and upversion to new label
|
||||||
shift;
|
shift;
|
||||||
|
@ -109,9 +112,6 @@ do
|
||||||
echo "Release flagged, but no release tag supplied" 1>&2;
|
echo "Release flagged, but no release tag supplied" 1>&2;
|
||||||
exit 1;
|
exit 1;
|
||||||
fi;;
|
fi;;
|
||||||
-p|-pull)
|
|
||||||
# pull from remote Git origin
|
|
||||||
git pull origin master;;
|
|
||||||
-t|-trial)
|
-t|-trial)
|
||||||
trial="TRUE";;
|
trial="TRUE";;
|
||||||
-w|-webapps)
|
-w|-webapps)
|
||||||
|
|
Loading…
Reference in a new issue