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 5fb03c8 commit 42fa9d3
Showing 1 changed file with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,42 +15,42 @@ BaselineOfTheProjectProject >> baseline: spec [

spec for: #'common' do: [
spec
baseline: 'BookmarkMagic' with: [
baseline: #'BookmarkMagic' with: [
spec repository: 'github://seandenigris/Bookmark-Magic' ];
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: 'LivingLibrary' with: [
baseline: #'LivingLibrary' with: [
spec repository: 'github://seandenigris/Living-Library' ];
baseline: 'Magritte' with: [
baseline: #'Magritte' with: [
spec repository: 'github://seandenigris/Magritte' ];
baseline: 'Mocketry' with: [
baseline: #'Mocketry' with: [
spec repository: 'github://dionisiydk/Mocketry' ];
baseline: 'MSAL' with: [
baseline: #'MSAL' with: [
spec repository: 'github://seandenigris/MSAL-Smalltalk' ];
baseline: 'MyPeople' with: [
baseline: #'MyPeople' with: [
spec repository: 'github://SeanDeNigris/My-People' ];
baseline: 'PharoEnhancements' with: [
baseline: #'PharoEnhancements' with: [
spec repository: 'github://seandenigris/Pharo-Enhancements' ];
baseline: 'QuoteMe' with: [
baseline: #'QuoteMe' with: [
spec repository: 'github://seandenigris/Quote-Me' ];
baseline: 'SimplePersistence' with: [
baseline: #'SimplePersistence' with: [
spec
repository: 'github://seandenigris/Simple-Persistence' ];
baseline: 'TrackingNumbers' with: [
baseline: #'TrackingNumbers' with: [
spec repository: 'github://seandenigris/Tracking-St' ].
spec
"package: #'Spec-PolyWidgets' with: [
spec
repository: 'http://smalltalkhub.com/mc/SeanDeNigris/SeansOutbox/main/' ];"
package: #ProjectProject with: [
spec requires: #('BookmarkMagic' 'DynabookFoundation' 'ExternalWebBrowser' 'LivingLibrary' 'Magritte' 'Mocketry' 'MSAL' 'MyPeople' 'PharoEnhancements' 'QuoteMe' 'SimplePersistence' "'Spec-PolyWidgets'" 'TrackingNumbers'). ]. ].
spec requires: #(#'BookmarkMagic' #'DynabookFoundation' #'ExternalWebBrowser' #'LivingLibrary' #'Magritte' #'Mocketry' #'MSAL' #'MyPeople' #'PharoEnhancements' #'QuoteMe' #'SimplePersistence' "'Spec-PolyWidgets'" #'TrackingNumbers'). ]. ].

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

{ #category : #accessing }
Expand Down

0 comments on commit 42fa9d3

Please sign in to comment.