|
If you want to load the latest version of the projects that are under #development, this script does the trick:
Metacello registry
configuration: [:spec | spec version blessing == #development];
get.
If you just want to see which ones are under #development, print/inspect the following:
Metacello registry
configuration: [:spec | spec version blessing == #development];
list.
|