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: '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: '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: 'LepiterBuildingBlocs' with: [spec repository: 'github://botwhytho/LepiterBuildingBlocs:main/src']"
|
baseline: 'DataFrame'with: [ spec repository: 'github://PolyMathOrg/DataFrame/src' ].
|
||||||
"baseline: 'PetitParser' with: [
|
|
||||||
spec
|
|
||||||
loads: #('Minimal' 'Core' 'Tests' 'Islands');
|
|
||||||
repository: 'github://moosetechnology/PetitParser:v3.x.x/src' ]."
|
|
||||||
"self fossil: spec."
|
"self fossil: spec."
|
||||||
"self xmlParserHTML: spec"
|
"self xmlParserHTML: spec"
|
||||||
"Packages"
|
"Packages"
|
||||||
spec
|
spec
|
||||||
package: 'PetitMarkdown' with: [ spec requires: #('PetitParser')];
|
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"
|
"Groups"
|
||||||
|
|
||||||
@ -49,7 +52,9 @@ BaselineOfMiniDocs >> fossil: spec [
|
|||||||
|
|
||||||
{ #category : #accessing }
|
{ #category : #accessing }
|
||||||
BaselineOfMiniDocs >> semanticVersion [
|
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 }
|
{ #category : #accessing }
|
||||||
@ -92,13 +97,4 @@ BaselineOfMiniDocs >> xmlParserHTML: spec [
|
|||||||
repository: 'github://pharo-contributions/XML-XMLParserHTML/src';
|
repository: 'github://pharo-contributions/XML-XMLParserHTML/src';
|
||||||
loads: #('ALL')];
|
loads: #('ALL')];
|
||||||
import: 'XMLParserHTML'
|
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