Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated load snippets [ci skip]
  • Loading branch information
Johan Brichau committed Jun 4, 2017
commit 61126b949ea16a4e06227eb7ef394dcbc4cdd1e4
31 changes: 23 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,41 @@ The [Travis CI builds](https://travis-ci.org/SeasideSt/Grease) currently test Gr

## Installation

### Squeak and Pharo
#### Prerequisite on Squeak and Pharo <3.0

Make sure you have the [MetacelloPreview version](https://github.com/dalehenrich/metacello-work), otherwise the load will not work. You have two options for loading: from Smalltalkhub or from Github.
Make sure you have the [MetacelloPreview version](https://github.com/dalehenrich/metacello-work), otherwise the load will not work.

### Squeak and Pharo >=3.0

Load the latest code from master (i.e. stable):

Load from Smalltalkhub:
```Smalltalk
Metacello new
configuration: 'Grease';
repository: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
version: #stable;
baseline: 'Grease';
githubUser: 'SeasideSt' project: 'Grease' commitish: 'master' path: 'repository';
load
```
-or-
Load from: Github:

Load a specific version:

```Smalltalk
Metacello new
baseline: 'Grease';
githubUser: 'SeasideSt' project: 'Grease' commitish: '' path: 'repository';
githubUser: 'SeasideSt' project: 'Grease' commitish: 'v1.3.0' path: 'repository';
load
```
-or-

Legacy: load from Smalltalkhub:
```Smalltalk
Metacello new
configuration: 'Grease';
repository: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
version: '1.0.0';
load
```

### GemStone

Grease is part of the GLASS setup. You can upgrade your version of Grease using [GsUpgrader](https://github.com/GsDevKit/gsUpgrader).
Expand Down