Skip to content

Commit

Permalink
added installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvc authored Dec 15, 2018
1 parent b10eb7a commit 14da762
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
NeoJSON
=======
# NeoJSON

NeoJSON is an elegant and efficient standalone Smalltalk framework to read and write JSON converting to or from Smalltalk objects.

Expand All @@ -14,3 +13,20 @@ Similary, NeoJSONReader is used to parse a JSON representation from a textual st

http://www.json.org
https://en.wikipedia.org/wiki/JSON

## Installation

You can load NeoJSON using Metacello

```Smalltalk
Metacello new
repository: 'github://svenvc/NeoJSON/repository';
baseline: 'NeoJSON';
load.
```

You can use the following dependency from your own Metacello configuration or baseline

```Smalltalk
spec baseline: 'NeoJSON' with: [ spec repository: 'github://svenvc/NeoJSON/repository' ].
```

0 comments on commit 14da762

Please sign in to comment.