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 077e3ec commit a130f1b
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/BaselineOfSmallWorld/BaselineOfSmallWorld.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit a130f1b

Please sign in to comment.