Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.5 KB

README.md

File metadata and controls

39 lines (30 loc) · 1.5 KB

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'.