From 894269c3564ad5bc679ac45f245a859292d20f09 Mon Sep 17 00:00:00 2001 From: Johan Brichau Date: Sat, 20 Sep 2014 14:34:05 +0200 Subject: [PATCH] fix README instructions --- README.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b04691d..7015d18 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,21 @@ XMLPullParser [![](https://travis-ci.org/GsDevKit/XMLPullParser.svg?branch=master)](https://travis-ci.org/GsDevKit/XMLPullParser) ============= -XMLPullParser is a streaming XML parser. Instead of building a DOM tree, the parser streams over "events" (start tag, text, end tag) on demand. For more information on the technique in general, see [xmlpull.org](xmlpull.org). This is a port of the XMLPullParser code found on http://www.smalltalkhub.com/#!/~hernan/XMLPullParser/ to Gemstone/GLASS. +XMLPullParser is a streaming XML parser. Instead of building a DOM tree, the parser streams over "events" (start tag, text, end tag) on demand. For more information on the technique in general, see [xmlpull.org](xmlpull.org). This is a port of the XMLPullParser code from http://www.smalltalkhub.com/#!/~hernan/XMLPullParser/ to Gemstone/GLASS. ## Loading into GemStone +Install the latest commit from the master branch: ```Smalltalk Metacello new baseline: 'XMLPullParser'; - repository: 'github://glassdb/XMLPullParser/repository'; + repository: 'github://GsDevKit/XMLPullParser:master/repository'; load. ``` - -[https://travis-ci.org/GsDevKit/XMLPullParser.svg?branch=master] \ No newline at end of file + +Install a particular version, e.g. 1.5.0 (see [Releases](https://github.com/GsDevKit/XMLPullParser/releases) for a list of possible versions): +```Smalltalk +Metacello new + baseline: 'XMLPullParser'; + repository: 'github://GsDevKit/XMLPullParser:v1.5.0/repository'; + load. +``` \ No newline at end of file