GitHunt
ES

estebanlm/SimpleRene

This project is a fork from Magritte that is about to be simpler for Pharo (and without compatibility packages)

SimpleRene

SimpleRene is a fork of Magritte, with the only purpose of making it
lighter and easier to be used on Pharo.
Thanks to all Magritte contributors :)

CI

Most applications consist of a big number of model- or so called domain-objects. Building different views, editors,
and reports; querying, validating and storing those objects is very repetitive and error-prone, if an object changes
its shape frequently.

SimpleRene is a fully dynamic meta-description framework that helps to solve those problems, while keeping the full
power with the programmer in all aspects. Moreover since Magritte is described in itself, you can let your users
modify the meta-world and add their own fields and forms without writing a single line of code.

Installation

Metacello new
	baseline: 'SimpleRene';
	repository: 'github://pharo-contributions/SimpleRene';
	load

Add as a project dependency

In you project Baseline or Configuration definition, add to the spec:

spec 
	baseline: 'SimpleRene' 
	with: [
		spec
			repository: 'github://pharo-contributions/SimpleRene:v1.0.0'; 
			loads: #(Core) ]; 

This snippet uses v1.0.0 release version, remember to change the release version to your needs.
See BaselineOfSimpleRene for other groups to load beside of 'Core'.

Contributors

Created May 31, 2023
Updated June 7, 2023