From a130f1b25ea9099d6486aace85ec65894e05a5da Mon Sep 17 00:00:00 2001 From: Sean DeNigris Date: Wed, 28 Aug 2024 12:15:14 -0400 Subject: [PATCH] [MetaC]: Change Strings to Symbols Wondering if that will cut down on image size when loaded. Tally showed many strings that seem Metacello-related --- .../BaselineOfSmallWorld.class.st | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/BaselineOfSmallWorld/BaselineOfSmallWorld.class.st b/src/BaselineOfSmallWorld/BaselineOfSmallWorld.class.st index 992bced..92c3d35 100644 --- a/src/BaselineOfSmallWorld/BaselineOfSmallWorld.class.st +++ b/src/BaselineOfSmallWorld/BaselineOfSmallWorld.class.st @@ -15,31 +15,31 @@ BaselineOfSmallWorld >> baseline: spec [ spec for: #'common' do: [ spec - baseline: 'DynabookFoundation' with: [ + baseline: #'DynabookFoundation' with: [ spec repository: 'github://seandenigris/Dynabook-Foundation' ]; - baseline: 'ExternalWebBrowser' with: [ + baseline: #'ExternalWebBrowser' with: [ spec repository: 'github://seandenigris/Pharo-Web-Browser' ]; - baseline: 'GitLabCI' with: [ + baseline: #'GitLabCI' with: [ spec repository: 'gitlab://seandenigris/gitlab-smalltalk-ci:master/src' ]; - baseline: 'Magritte' with: [ + baseline: #'Magritte' with: [ spec repository: 'github://seandenigris/Magritte' ]; - baseline: 'Mocketry' with: [ + baseline: #'Mocketry' with: [ spec repository: 'github://dionisiydk/Mocketry' ]; - baseline: 'PharoEnhancements' with: [ + baseline: #'PharoEnhancements' with: [ spec repository: 'github://seandenigris/Pharo-Enhancements' ]; - baseline: 'SimplePersistence' with: [ + baseline: #'SimplePersistence' with: [ spec repository: 'github://seandenigris/Simple-Persistence' ]. spec - package: 'SmallWorld-Core' with: [ - spec requires: #('DynabookFoundation' 'Magritte' 'GitLabCI'). ]; - package: 'SmallWorld-UI' with: [ + package: #'SmallWorld-Core' with: [ + spec requires: #(#'DynabookFoundation' #'Magritte' #'GitLabCI'). ]; + package: #'SmallWorld-UI' with: [ spec requires: #('ExternalWebBrowser'). ]; - package: 'SmallWorld-Specification' with: [ + package: #'SmallWorld-Specification' with: [ spec requires: #('Mocketry' ) ]; package: #'SmallWorld-Persistence' with: [ - spec requires: #('SimplePersistence' 'PharoEnhancements' ). ]. ]. + spec requires: #(#'SimplePersistence' #'PharoEnhancements' ). ]. ]. - spec for: #'PharoLauncher' do: [ spec package: 'SmallWorld-PharoLauncher' ] + spec for: #'PharoLauncher' do: [ spec package: #'SmallWorld-PharoLauncher' ] ] { #category : #accessing }