Skip to content

Commit

Permalink
[MetaC]: Change Strings to Symbols
Browse files Browse the repository at this point in the history
Wondering if that will cut down on image size when loaded. Tally showed many strings that seem Metacello-related
  • Loading branch information
seandenigris committed Aug 28, 2024
1 parent 6a8cf88 commit 751c343
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/BaselineOfMyPeople/BaselineOfMyPeople.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -15,38 +15,38 @@ BaselineOfMyPeople >> baseline: spec [

spec for: #'common' do: [
spec
baseline: 'DynabookFoundation' with: [
baseline: #'DynabookFoundation' with: [
spec repository: 'github://seandenigris/Dynabook-Foundation' ];
baseline: 'Magritte' with: [
baseline: #'Magritte' with: [
spec
loads: #('Magritte-Merging');
loads: #(#'Magritte-Merging');
repository: 'github://seandenigris/Magritte' ];
baseline: 'Mocketry' with: [
baseline: #'Mocketry' with: [
spec repository: 'github://dionisiydk/Mocketry' ];
baseline: 'NeoCSV' with: [
baseline: #'NeoCSV' with: [
spec
repository: 'github://seandenigris/NeoCSV';
loads: 'Neo-CSV-Magritte' ];
baseline: 'PharoEnhancements' with: [
loads: #'Neo-CSV-Magritte' ];
baseline: #'PharoEnhancements' with: [
spec
repository: 'github://seandenigris/Pharo-Enhancements';
loads: #(#default 'PharoEnhancements-Magritte') ];
baseline: 'SimplePersistence' with: [
loads: #(#default #'PharoEnhancements-Magritte') ];
baseline: #'SimplePersistence' with: [
spec repository: 'github://seandenigris/Simple-Persistence' ].
spec package: #MyPeople with: [
spec requires: #('DynabookFoundation' 'Magritte' 'Mocketry' 'NeoCSV' 'PharoEnhancements' 'SimplePersistence'). ]. ].
spec requires: #(DynabookFoundation Magritte Mocketry NeoCSV PharoEnhancements SimplePersistence). ]. ].

spec for: #GToolkit do: [
spec baseline: 'ObjectiveLepiter' with: [
spec baseline: #'ObjectiveLepiter' with: [
spec repository: 'github://seandenigris/Objective-Lepiter' ].
spec package: #MyPeople with: [
spec requires: #('ObjectiveLepiter') ] ].
spec requires: #(ObjectiveLepiter) ] ].

spec for: #notGToolkit do: [
spec baseline: 'PetitParser2' with: [
spec baseline: #'PetitParser2' with: [
spec repository: 'github://seandenigris/PetitParser2' ].
spec package: #MyPeople with: [
spec requires: #('PetitParser2'). ] ]
spec requires: #(PetitParser2). ] ]
]

{ #category : #accessing }
Expand Down

0 comments on commit 751c343

Please sign in to comment.