Skip to content

Commit 5fb42ed

Browse files
authored
better readme
1 parent 29c7bb9 commit 5fb42ed

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,24 @@
1212
Ghost is framework to implement unnatural smalltalk objects like proxies or prototypes. It provides suitable infrastructure to implement message processing in special way
1313

1414
## Installation
15-
Use following script for Pharo version >= 6:
15+
Use following script for Pharo version >= 10:
1616
```Smalltalk
1717
Metacello new
1818
baseline: 'Ghost';
1919
repository: 'github://pharo-ide/Ghost';
2020
load
2121
```
22-
Notice that Pharo 6 requires manual loading of Tonel format.
23-
2422
To add dependency in your project baseline:
2523
```Smalltalk
2624
spec
2725
baseline: 'Ghost'
28-
with: [ spec repository: 'github://pharo-ide/Ghost:v4.0.?' ]
26+
with: [ spec repository: 'github://pharo-ide/Ghost:v6.0.0' ]
2927
```
30-
For old Pharo versions project should be loaded from smalltalkhub:
28+
Notice that Pharo versions <= 9 were based on GTTools. In current Pharo it was removed and replaced by NewTools project. Ghost requires a dedicated tooling support to be able inspect Ghost objects. In order to use Ghost in old versions of Pharo load pharo9 branch instead of master:
3129
```Smalltalk
3230
Metacello new
33-
smalltalkhubUser: 'Pharo' project: 'Ghost';
34-
configuration: 'Ghost';
35-
version: #stable;
36-
load.
31+
baseline: 'Ghost';
32+
repository: 'github://pharo-ide/Ghost:pharo9';
33+
load
3734
```
35+

0 commit comments

Comments
 (0)