DataFrame as a dependency.
This commit is contained in:
parent
e1c4f4fb52
commit
0305a68aca
@ -18,18 +18,21 @@ BaselineOfMiniDocs >> baseline: 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: 'LepiterBuildingBlocs' with: [spec repository: 'github://botwhytho/LepiterBuildingBlocs:main/src']"
|
||||
"baseline: 'PetitParser' with: [
|
||||
spec
|
||||
loads: #('Minimal' 'Core' 'Tests' 'Islands');
|
||||
repository: 'github://moosetechnology/PetitParser:v3.x.x/src' ]."
|
||||
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"
|
||||
"Packages"
|
||||
spec
|
||||
package: 'PetitMarkdown' with: [ spec requires: #('PetitParser')];
|
||||
package: 'MiniDocs' with: [ spec requires: #('LepiterBuildingBlocs' 'Mustache' 'Temple' 'Teapot' 'Tealight' 'PetitMarkdown' 'PetitParser')].
|
||||
package: 'MiniDocs'
|
||||
with: [ spec
|
||||
requires: #('LepiterBuildingBlocs'
|
||||
'Mustache' 'Temple'
|
||||
'Teapot' 'Tealight'
|
||||
'PetitMarkdown' 'PetitParser'
|
||||
'DataFrame')
|
||||
].
|
||||
|
||||
"Groups"
|
||||
|
||||
@ -49,7 +52,9 @@ BaselineOfMiniDocs >> fossil: spec [
|
||||
|
||||
{ #category : #accessing }
|
||||
BaselineOfMiniDocs >> semanticVersion [
|
||||
^ '0.2.0'
|
||||
"Using the same versioning of Grafoscopio as this the package that dictates new versions for it,
|
||||
until the main Grafoscopio metapackage is build."
|
||||
^ '0A.4.0'
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
@ -92,13 +97,4 @@ BaselineOfMiniDocs >> xmlParserHTML: spec [
|
||||
repository: 'github://pharo-contributions/XML-XMLParserHTML/src';
|
||||
loads: #('ALL')];
|
||||
import: 'XMLParserHTML'
|
||||
"Metacello new
|
||||
baseline: 'XMLParserHTML';
|
||||
repository: 'github://pharo-contributions/XML-XMLParserHTML/src';
|
||||
onConflict: [ :ex | ex useLoaded ];
|
||||
onUpgrade: [ :ex | ex useLoaded ];
|
||||
onDowngrade: [ :ex | ex useLoaded ];
|
||||
onWarningLog;
|
||||
load.
|
||||
spec baseline: 'XMLParserHTML' with: [spec repository: 'github://pharo-contributions/XML-XMLParserHTML/src']"
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user