Skip to content

Commit f7927f0

Browse files
authored
Added installation instructions
1 parent 4cabe31 commit f7927f0

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

README.md

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
NeoCSV
2-
======
1+
# NeoCSV
32

43
NeoCSV is an elegant and efficient standalone Smalltalk framework to read and write CSV converting to or from Smalltalk objects.
54

@@ -17,3 +16,21 @@ Basically, NeoCSV deals with a format that
1716
- where fields can be quoted should they contain separators or line endings
1817

1918
https://en.wikipedia.org/wiki/Comma-separated_values
19+
20+
## Installation
21+
22+
You can load NeoCSV using Metacello
23+
24+
```Smalltalk
25+
Metacello new
26+
repository: 'github://svenvc/NeoCSV/repository';
27+
baseline: 'NeoCSV';
28+
load.
29+
```
30+
31+
You can use the following dependency from your own Metacello configuration or baseline
32+
33+
```Smalltalk
34+
spec baseline: 'NeoCSV' with: [ spec repository: 'github://svenvc/NeoCSV/repository' ].
35+
```
36+

0 commit comments

Comments
 (0)