Skip to content

Commit

Permalink
Merge branch 'master' into pharo1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dalehenrich committed Nov 12, 2014
2 parents be95655 + 821ddc7 commit 5302ee0
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions README.md
Expand Up @@ -6,9 +6,10 @@ managing Smalltalk source code.*

The current version of **FileTree** has been tested in
GemStone2.x, GemStone3.x,
Pharo1.1, Pharo1.2, Pharo1.3, Pharo1.4, Pharo2.0, Pharo3.0,
Pharo1.1, Pharo1.2, Pharo1.3, Pharo1.4, Pharo2.0, Pharo3.0, Pharo4.0,
Squeak4.3, Squeak4.4, Squeak4.5.

### GemStone
To install in **GemStone**:

```Smalltalk
Expand All @@ -23,6 +24,7 @@ Gofer new
load.
```

### Pharo
To install in **Pharo** (note FileTree is pre-installed in **Pharo3.0** and **Pharo4.0**):

```Smalltalk
Expand All @@ -33,6 +35,24 @@ Gofer new
((Smalltalk at: #ConfigurationOfFileTree) project version: #'stable') load.
```

To get the latest and greatest version of FileTree for **Pharo** make sure that you've installed the [Metacello Preview](https://github.com/dalehenrich/metacello-work#install-preview-version) and then execute the following:

```Smalltalk
Metacello new
baseline: 'FileTree';
repository: 'github://dalehenrich/filetree:<pharo-branch>/repository';
load.
```

replacing *\<pharo-branch\>* with the proper version-based branch name (use **pharo3.0** for Pharo-4.0):

* pharo1.1
* pharo1.3
* pharo1.4
* pharo2.0
* pharo3.0

### Squeak
To install in **Squeak**:

```Smalltalk
Expand All @@ -42,6 +62,15 @@ Installer ss3
((Smalltalk at: #ConfigurationOfFileTree) project version: #'stable') load.
```

To get the latest and greatest version of FileTree for **Squeak** make sure that you've installed the [Metacello Preview](https://github.com/dalehenrich/metacello-work#install-preview-version) and then execute the following:

```Smalltalk
Metacello new
baseline: 'FileTree';
repository: 'github://dalehenrich/filetree:squeak4.3/repository';
load.
```

## Contributing

Here are some guidelines on contributing to the project:
Expand All @@ -63,7 +92,7 @@ Here are some guidelines on contributing to the project:

**pharo2.0** : [![Build Status](https://travis-ci.org/dalehenrich/filetree.png?branch=pharo2.0)](http://travis-ci.org/dalehenrich/filetree)

**pharo3.0** : [![Build Status](https://travis-ci.org/dalehenrich/filetree.png?branch=pharo3.0)](http://travis-ci.org/dalehenrich/filetree)
**pharo3.0 & pharo4.0** : [![Build Status](https://travis-ci.org/dalehenrich/filetree.png?branch=pharo3.0)](http://travis-ci.org/dalehenrich/filetree)

**squeak4.3, squeak4.4 & squeak4.5** : [![Build Status](https://travis-ci.org/dalehenrich/filetree.png?branch=squeak4.3)](http://travis-ci.org/dalehenrich/filetree)

Expand Down

0 comments on commit 5302ee0

Please sign in to comment.