forked from gcotelli/RenoirSt
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from ba-st/updates
Updates
- Loading branch information
Showing
13 changed files
with
222 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
# Better line ending handling for st files | ||
*.st filter=st_EOL | ||
*.st linguist-language=Smalltalk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
# Installation | ||
|
||
## Basic Installation | ||
|
||
### Pharo 6.1 or greater | ||
|
||
You can load **RenoirSt** evaluating: | ||
```smalltalk | ||
Metacello new | ||
baseline: 'RenoirSt'; | ||
repository: 'github://ba-st/RenoirSt:release-candidate/source'; | ||
load. | ||
``` | ||
> Change `release-candidate` to some released version if you want a pinned version | ||
### Pharo 5 | ||
|
||
- Open a Playground and evaluate: | ||
|
||
```smalltalk | ||
Metacello new | ||
baseline: 'RenoirSt'; | ||
repository: 'github://ba-st/RenoirSt:stable-pharo-50/source'; | ||
load | ||
``` | ||
|
||
or | ||
|
||
- Load it using the Catalog Browser | ||
|
||
### Pharo 4 | ||
|
||
- Open a Playground and evaluate: | ||
|
||
```smalltalk | ||
Metacello new | ||
baseline: 'RenoirSt'; | ||
repository: 'github://ba-st/RenoirSt:stable-pharo-40/source'; | ||
load | ||
``` | ||
|
||
or | ||
|
||
- Load it using the Configuration Browser | ||
|
||
### Pharo 3 (this version is stalled at 1.4.0) | ||
|
||
- Load it using the Configuration Browser | ||
|
||
or | ||
|
||
- Open a workspace and evaluate: | ||
|
||
```smalltalk | ||
Gofer it | ||
url: 'http://smalltalkhub.com/mc/gcotelli/RenoirSt/main'; | ||
configurationOf: 'RenoirSt'; | ||
loadStable | ||
``` | ||
|
||
## Using as dependency | ||
|
||
In order to include **RenoirSt** as part of your project, you should reference the package in your product baseline: | ||
|
||
```smalltalk | ||
setUpDependencies: spec | ||
spec | ||
baseline: 'RenoirSt' | ||
with: [ spec | ||
repository: 'github://ba-st/RenoirSt:v{XX}/source'; | ||
loads: #('Deployment') ]; | ||
import: 'RenoirSt'. | ||
``` | ||
> Replace `{XX}` with the version you want to depend on | ||
```smalltalk | ||
baseline: spec | ||
<baseline> | ||
spec | ||
for: #common | ||
do: [ self setUpDependencies: spec. | ||
spec package: 'My-Package' with: [ spec requires: #('RenoirSt') ] ] | ||
``` | ||
|
||
## Provided groups | ||
|
||
- `Deployment` will load all the packages needed in a deployed application | ||
- `Tests` will load the test cases | ||
- `Tools` will load the extensions to the SUnit framework and development tools (inspector and spotter extensions) | ||
- `CI` is the group loaded in the continuous integration setup | ||
- `Development` will load all the needed packages to develop and contribute to the project | ||
- `Deployment-Seaside-Extensions` will load all the packages needed in a deployed application including the Javascript extensions | ||
- `Development-Seaside-Extensions` will load all the needed packages to develop and contribute to the project including the Javascript extensions |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.