OpenSmock is a set of tools and workshops designed for building applications in the Pharo development environment, with a particular focus on user interfaces (UI).
To install OpenSmock with all features and dependencies, simply execute the following script in your Pharo image:
Metacello new
baseline: 'OpenSmock';
repository: 'github://OpenSmock/OpenSmock:main/src';
load.
If you prefer to install only the core version of OpenSmock (without additional dependencies), use the following script:
Metacello new
baseline: 'OpenSmock';
repository: 'github://OpenSmock/OpenSmock:main/src';
load: 'Core'.
If you prefer to install only the core version of OpenSmock (without additional dependencies but with Bloc features), use the following script:
Metacello new
baseline: 'OpenSmock';
repository: 'github://OpenSmock/OpenSmock:main/src';
load: 'CoreWithBloc'.
Note: This version is also similar to a Core version when Pharo will integrate Bloc.
Core :
- No dependencies
Default/Full :
Note: Bloc and Alexandrie will soon be integrated into Pharo, at which point this dependency will be removed.
- Pierre Laborde - Initial work - labordep
- Eric Le Pors - Initial work - ELePors
- Brendan Landais - Development - LANDAISB
This project is licensed under the MIT License - see the LICENSE file for details.