DataFrame as a dependency. Improved dependencies reading, as they are getting longer.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2024-03-29 10:38:27 -05:00
parent 87fba41704
commit 0c5ede8498
1 changed files with 13 additions and 19 deletions

View File

@ -13,29 +13,24 @@ BaselineOfMiniDocs >> baseline: spec [
"Dependencies"
self setUpTeapot: spec.
self setUpPetitParser: spec.
self setUpLepiterBuildingBlocs: spec.
[self lepiterBuildingBlocs: spec]
onErrorDo: [:err | self inform: 'LepiterBuilldingBlocs error: ', err asString].
spec
baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache' ];
baseline: 'Temple' with: [ spec repository: 'github://astares/Pharo-Temple/src' ];
"baseline: 'Teapot' with: [ spec repository: 'github://zeroflag/Teapot/source' ];"
baseline: 'Tealight' with: [ spec repository: 'github://astares/Tealight:main/src' ];
baseline: 'DataFrame'with: [ spec repository: 'github://PolyMathOrg/DataFrame/src' ].
"self fossil: spec."
"self xmlParserHTML: spec"
baseline: 'DataFrame' with: [ spec repository: 'github://PolyMathOrg/DataFrame/src' ].
"Packages"
spec
package: 'PetitMarkdown' with: [ spec requires: #('PetitParser')];
package: 'MiniDocs'
with: [ spec
requires: #('LepiterBuildingBlocs'
'Mustache' 'Temple'
'Teapot' 'Tealight'
'PetitMarkdown' 'PetitParser'
'DataFrame')
].
with: [ spec requires: #(
'Mustache' 'Temple' "Templating"
'Teapot' 'Tealight' "Web server"
'PetitMarkdown' 'PetitParser' "Parsers"
'DataFrame' "Tabular data")].
"self xmlParserHTML: spec"
"Groups"
].
spec
@ -84,11 +79,10 @@ BaselineOfMiniDocs >> setUpTeapot: spec [
{ #category : #accessing }
BaselineOfMiniDocs >> xmlParserHTML: spec [
spec
baseline: 'XMLParserHTML'
with: [ spec
repository: 'github://pharo-contributions/XML-XMLParserHTML/src';
loads: #('ALL')];
import: 'XMLParserHTML'
with: [
spec
loads: #('Core');
repository: 'github://pharo-contributions/XML-XMLParserHTML/src' ].
]