From 90ab4b53c4e0d400b53f8c7f94c2e6fcd15c8dee Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Sun, 10 May 2015 13:43:05 +0000 Subject: [PATCH] Updated: Updating prerrequisites. --- .../Grafoscopio/GrafoscopioBrowser.class.st | 32 +++++++++++++------ 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/repository/Grafoscopio/GrafoscopioBrowser.class.st b/repository/Grafoscopio/GrafoscopioBrowser.class.st index 2cded3a..92178bf 100644 --- a/repository/Grafoscopio/GrafoscopioBrowser.class.st +++ b/repository/Grafoscopio/GrafoscopioBrowser.class.st @@ -288,17 +288,31 @@ GrafoscopioBrowser class >> updateGrafoscopio [ { #category : #'as yet unclassified' } GrafoscopioBrowser class >> updatePrerrequisites [ - "Updates the system with new versions of itself take from the source code repository" + "Updates the system prerequisites with new versions of itself take from the source code repository" + + "Visualization library (which also makes main menu loadable)" + Gofer it + smalltalkhubUser: 'ObjectProfile' project: 'Roassal2'; + configurationOf: 'Roassal2'; + loadDevelopment. + + "Open/save files on STON format" Gofer new - smalltalkhubUser: 'SvenVanCaekenberghe' project: 'STON'; - package: 'STON-Core'; - load. + smalltalkhubUser: 'SvenVanCaekenberghe' project: 'STON'; + configurationOf: 'Ston'; + loadBleedingEdge. + + "Moose and Roassal integration" + Gofer new + smalltalkhubUser: 'Moose' project: 'Glamour'; + package: 'Glamour-Tools'; + package: 'Glamour-Roassal2-Presentations'; + load. - Gofer new - squeaksource: 'Citezen'; - package: 'ConfigurationOfCitezen'; - load. - (ConfigurationOfCitezen project latestVersion: #development) load. + Gofer new + smalltalkhubUser: 'Moose' project: 'GToolkit'; + package: 'GT-InspectorExtensions-CoreRoassal'; + load. ] { #category : #'as yet unclassified' }