Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pharo-contributions/CollectionExtensions
I am a project containing extensions of the Pharo collection API.
https://github.com/pharo-contributions/CollectionExtensions
Last synced: about 2 months ago
JSON representation
I am a project containing extensions of the Pharo collection API.
- Host: GitHub
- URL: https://github.com/pharo-contributions/CollectionExtensions
- Owner: pharo-contributions
- License: mit
- Created: 2018-11-28T15:05:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-12-14T16:36:56.000Z (about 3 years ago)
- Last Synced: 2024-11-14T11:15:10.394Z (2 months ago)
- Language: Smalltalk
- Size: 28.3 KB
- Stars: 3
- Watchers: 7
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pharo - CollectionExtensions - Extensions for Pharo collections API. (IDE)
README
# CollectionExtensions
I am a project containing extensions of the Pharo collection API.
## Version management
This project use semantic versionning to define the releases. This mean that each stable release of the project will get associate a version number of the form `vX.Y.Z`.
- **X** define the major version number
- **Y** define the minor version number
- **Z** define the patch version numberWhen a release contains only bug fixes, the patch number increase. When the release contains new features backward compatibles, the minor version increase. When the release contains breaking changes, the major version increase.
Thus, it should be safe to depend on a fixed major version and moving minor version of this project.
## Install CollectionExtensions
To install CollectionExtensions on your Pharo image you can just execute the following script:
```Smalltalk
Metacello new
githubUser: 'pharo-contributions' project: 'CollectionExtensions' commitish: 'v1.x.x' path: 'src';
baseline: 'CollectionExtensions';
load
```To add CollectionExtensions to your baseline just add this:
```Smalltalk
spec
baseline: 'CollectionExtensions'
with: [ spec repository: 'github://pharo-contributions/CollectionExtensions:v1.x.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.? .