Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliendelplanque/sunit-visitor
A package extending SUnit with an implementation of the visitor design pattern.
https://github.com/juliendelplanque/sunit-visitor
pharo smalltalk
Last synced: 7 days ago
JSON representation
A package extending SUnit with an implementation of the visitor design pattern.
- Host: GitHub
- URL: https://github.com/juliendelplanque/sunit-visitor
- Owner: juliendelplanque
- License: mit
- Created: 2018-06-01T16:23:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-17T14:34:32.000Z (over 5 years ago)
- Last Synced: 2024-10-31T07:05:11.745Z (about 2 months ago)
- Topics: pharo, smalltalk
- Language: Smalltalk
- Size: 14.6 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SUnit-Visitor
A package extending SUnit with an implementation of the visitor design pattern.## Install
```
Metacello new
baseline: 'SUnitVisitor';
repository: 'github://juliendelplanque/SUnit-Visitor/src';
load
```## 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.