https://github.com/feenkcom/gtoolkit-examples
The engine for example-driven development in Pharo.
https://github.com/feenkcom/gtoolkit-examples
glamorous-toolkit
Last synced: over 1 year ago
JSON representation
The engine for example-driven development in Pharo.
- Host: GitHub
- URL: https://github.com/feenkcom/gtoolkit-examples
- Owner: feenkcom
- License: mit
- Created: 2017-09-10T09:33:33.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2025-02-21T06:14:34.000Z (over 1 year ago)
- Last Synced: 2025-02-21T07:23:14.705Z (over 1 year ago)
- Topics: glamorous-toolkit
- Language: Smalltalk
- Homepage: https://gtoolkit.com
- Size: 793 KB
- Stars: 12
- Watchers: 8
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GT Examples
Examples is a slim engine that lets you define examples throughout the code and use them for documentation or testing. Through Examples, a developer can switch rapidly from the static code to a live environment and program in the presence of objects. In essence, it enables example-driven development. It is part of the [Glamorous Toolkit project](https://github.com/feenkcom/gtoolkit).
## How to load
To get the full experience of example-driven development, load the entire [Glamorous Toolkit project](https://github.com/feenkcom/gtoolkit).
To load the latest version separately, use the following snippet.
```Smalltalk
Metacello new
baseline: 'GToolkitExamples';
repository: 'github://feenkcom/gtoolkit-examples:main/src';
load.
```