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 84181dc commit a80b421
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/BaselineOfResourcesLive/BaselineOfResourcesLive.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -43,37 +43,37 @@ BaselineOfResourcesLive >> 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 repository: 'github://seandenigris/Magritte' ];
baseline: 'NeoCSV' with: [
baseline: #'NeoCSV' with: [
spec repository: 'github://seandenigris/NeoCSV' ];
baseline: 'PharoEnhancements' with: [
baseline: #'PharoEnhancements' with: [
spec repository: 'github://seandenigris/Pharo-Enhancements' ];
baseline: 'SimplePersistence' with: [
baseline: #'SimplePersistence' with: [
spec repository: 'github://seandenigris/Simple-Persistence' ];
baseline: 'Soup' with: [
baseline: #'Soup' with: [
spec repository: 'github://seandenigris/Soup' ];
baseline: 'Superuser' with: [
baseline: #'Superuser' with: [
spec repository: 'github://seandenigris/Superuser' ];
baseline: 'Tabular' with: [
baseline: #'Tabular' with: [
spec repository: 'github://seandenigris/Tabular' ];
baseline: 'Tempfile' with: [
baseline: #'Tempfile' with: [
spec repository: 'github://seandenigris/TempfileSt' ];
baseline: 'Tesseract' with: [
baseline: #'Tesseract' with: [
spec
repository: 'github://seandenigris/Tesseract-St' ].
spec package: #ResourcesLive with: [
spec
requires: #('DynabookFoundation' 'Magritte' 'NeoCSV' "for RlCsvFile" 'PharoEnhancements' 'SimplePersistence' 'Soup' "for RlHTML" 'Superuser' 'Tabular' 'Tempfile');
includes: #('Tesseract'). ]. ].
requires: #(DynabookFoundation Magritte NeoCSV "for RlCsvFile" PharoEnhancements SimplePersistence Soup "for RlHTML" Superuser Tabular Tempfile);
includes: #(Tesseract). ]. ].
spec for: #'GToolkit' do: [
spec
package: #'ResourcesLive-GToolkit' with: [
spec requires: #('ResourcesLive'). ];
spec requires: #(ResourcesLive). ];
package: #ResourcesLive with: [
spec includes: #('ResourcesLive-GToolkit') ]. ].
spec includes: #(#'ResourcesLive-GToolkit') ]. ].
]

{ #category : #accessing }
Expand Down

0 comments on commit a80b421

Please sign in to comment.