Skip to content

Commit

Permalink
Merge 5dda0f2 into 5a9b977
Browse files Browse the repository at this point in the history
  • Loading branch information
pdebruic committed Feb 13, 2019
2 parents 5a9b977 + 5dda0f2 commit 94f7f89
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ When a release contains only bug fixes, the patch number increase. When the rele
Thus, it should be safe to depend on a fixed major version and moving minor version of this project.

## Install MDL Seaside

### In Pharo
To install MaterialDesignLite on your Pharo image you can just execute the following script: [Spotter Cloud Workspace Url](http://ws.stfx.eu/1JIZRQS7OI00). See ``ZnWorkspace`` section for installing a ZnWorkspace if you so want.

```Smalltalk
Expand All @@ -61,6 +61,24 @@ To add MaterialDesignLite Seaside to your baseline just add this:
baseline: 'MaterialDesignLite'
with: [ spec repository: 'github://DuneSt/MaterialDesignLite:v2.x.x/src' ]
```
### In GemStone

```Smalltalk
Metacello new
githubUser: 'DuneSt' project: 'MaterialDesignLite' commitish: 'v1.3.x' path: 'src';
baseline: 'MaterialDesignLite';
onWarningLog;
load
```

To add MaterialDesignLite Seaside to your baseline just add this:

```Smalltalk
spec
baseline: 'MaterialDesignLite'
with: [ spec repository: 'github://DuneSt/MaterialDesignLite:v1.3.x/src' ]
```


Note that you can replace the #master by another branch as #development or a tag as #v1.0.0, #v1.? or #v1.2.? .

Expand Down

0 comments on commit 94f7f89

Please sign in to comment.