This commit is contained in:
ruidajo 2022-05-14 16:56:20 -05:00
commit 7d6c8259f6
4 changed files with 23 additions and 4 deletions

View File

@ -6,9 +6,11 @@ baseline: spec
do: [
"Dependencies"
self xmlParserHTML: spec.
"self rssTools: spec."
self rssTools: spec.
self reStore: spec.
self roassal3Exporters: spec.
"Packages"
spec
package: 'Socialmetrica'
with: [ spec requires: #('XMLParserHTML' "'RSSTools'") ]
with: [ spec requires: #('XMLParserHTML' 'RSSTools' 'ReStore' 'Roassal3Exporters') ]
]

View File

@ -0,0 +1,10 @@
baselines
reStore: spec
Metacello new
repository: 'github://rko281/ReStoreForPharo';
baseline: 'ReStore';
onConflict: [ :ex | ex useLoaded ];
onWarningLog;
load: 'all'.
spec baseline: 'ReStore' with: [ spec repository: 'github://rko281/ReStoreForPharo']

View File

@ -0,0 +1,7 @@
baselines
roassal3Exporters: spec
Metacello new
baseline: 'Roassal3Exporters';
repository: 'github://ObjectProfile/Roassal3Exporters';
load.
spec baseline: 'Roassal3Exporters' with: [ spec repository: 'github://ObjectProfile/Roassal3Exporters']

View File

@ -1,10 +1,10 @@
baselines
rssTools: spec
Metacello new
repository: 'github://brackendev/RSSTools-Pharo:v1.0.1/src';
repository: 'github://brackendev/RSSTools-Pharo/src';
baseline: 'RSSTools';
onConflict: [ :ex | ex useLoaded ];
onUpgrade: [ :ex | ex useLoaded ];
onDowngrade: [ :ex | ex useLoaded ];
load.
spec baseline: 'RSSTools' with: [ spec repository: 'github://brackendev/RSSTools-Pharo:v1.0.1/src']
spec baseline: 'RSSTools' with: [ spec repository: 'github://brackendev/RSSTools-Pharo/src']