DataFrame as a dependency. Improved dependencies reading, as they are getting longer.
This commit is contained in:
parent
87fba41704
commit
0c5ede8498
@ -13,29 +13,24 @@ BaselineOfMiniDocs >> baseline: spec [
|
|||||||
"Dependencies"
|
"Dependencies"
|
||||||
self setUpTeapot: spec.
|
self setUpTeapot: spec.
|
||||||
self setUpPetitParser: spec.
|
self setUpPetitParser: spec.
|
||||||
self setUpLepiterBuildingBlocs: spec.
|
[self lepiterBuildingBlocs: spec]
|
||||||
|
onErrorDo: [:err | self inform: 'LepiterBuilldingBlocs error: ', err asString].
|
||||||
spec
|
spec
|
||||||
baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache' ];
|
baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache' ];
|
||||||
baseline: 'Temple' with: [ spec repository: 'github://astares/Pharo-Temple/src' ];
|
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: 'Tealight' with: [ spec repository: 'github://astares/Tealight:main/src' ];
|
||||||
baseline: 'DataFrame'with: [ spec repository: 'github://PolyMathOrg/DataFrame/src' ].
|
baseline: 'DataFrame' with: [ spec repository: 'github://PolyMathOrg/DataFrame/src' ].
|
||||||
"self fossil: spec."
|
|
||||||
"self xmlParserHTML: spec"
|
|
||||||
"Packages"
|
"Packages"
|
||||||
spec
|
spec
|
||||||
package: 'PetitMarkdown' with: [ spec requires: #('PetitParser')];
|
package: 'PetitMarkdown' with: [ spec requires: #('PetitParser')];
|
||||||
package: 'MiniDocs'
|
package: 'MiniDocs'
|
||||||
with: [ spec
|
with: [ spec requires: #(
|
||||||
requires: #('LepiterBuildingBlocs'
|
'Mustache' 'Temple' "Templating"
|
||||||
'Mustache' 'Temple'
|
'Teapot' 'Tealight' "Web server"
|
||||||
'Teapot' 'Tealight'
|
'PetitMarkdown' 'PetitParser' "Parsers"
|
||||||
'PetitMarkdown' 'PetitParser'
|
'DataFrame' "Tabular data")].
|
||||||
'DataFrame')
|
"self xmlParserHTML: spec"
|
||||||
].
|
|
||||||
|
|
||||||
"Groups"
|
"Groups"
|
||||||
|
|
||||||
].
|
].
|
||||||
spec
|
spec
|
||||||
|
|
||||||
@ -84,11 +79,10 @@ BaselineOfMiniDocs >> setUpTeapot: spec [
|
|||||||
|
|
||||||
{ #category : #accessing }
|
{ #category : #accessing }
|
||||||
BaselineOfMiniDocs >> xmlParserHTML: spec [
|
BaselineOfMiniDocs >> xmlParserHTML: spec [
|
||||||
|
|
||||||
spec
|
spec
|
||||||
baseline: 'XMLParserHTML'
|
baseline: 'XMLParserHTML'
|
||||||
with: [ spec
|
with: [
|
||||||
repository: 'github://pharo-contributions/XML-XMLParserHTML/src';
|
spec
|
||||||
loads: #('ALL')];
|
loads: #('Core');
|
||||||
import: 'XMLParserHTML'
|
repository: 'github://pharo-contributions/XML-XMLParserHTML/src' ].
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user