2022-05-15 04:04:04 +00:00
|
|
|
Class {
|
|
|
|
#name : #BaselineOfMiniDocs,
|
|
|
|
#superclass : #BaselineOf,
|
|
|
|
#category : #BaselineOfMiniDocs
|
|
|
|
}
|
|
|
|
|
|
|
|
{ #category : #accessing }
|
|
|
|
BaselineOfMiniDocs >> baseline: spec [
|
|
|
|
<baseline>
|
|
|
|
spec
|
|
|
|
for: #common
|
|
|
|
do: [
|
2022-06-10 01:30:37 +00:00
|
|
|
"Dependencies"
|
|
|
|
spec
|
2023-01-01 17:33:58 +00:00
|
|
|
baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache' ];
|
2023-04-04 14:23:20 +00:00
|
|
|
baseline: 'Tealight' with: [ spec repository: 'github://astares/Tealight:main/src' ];
|
|
|
|
baseline: 'PetitParser' with: [
|
|
|
|
spec
|
2023-04-04 18:32:37 +00:00
|
|
|
loads: #('Minimal' 'Islands');
|
2023-04-04 14:23:20 +00:00
|
|
|
repository: 'github://moosetechnology/PetitParser:v3.x.x/src'
|
|
|
|
].
|
2022-10-07 21:59:57 +00:00
|
|
|
"self xmlParserHTML: spec."
|
2022-05-15 04:04:04 +00:00
|
|
|
"Packages"
|
|
|
|
spec
|
2023-04-04 14:45:49 +00:00
|
|
|
package: 'MiniDocs' with: [ spec requires: #('Mustache' 'Tealight' "'XMLParserHTML'") ];
|
|
|
|
package: 'PetitMarkdown' with: [ spec requires: #('PetitParser')]
|
2022-05-15 04:04:04 +00:00
|
|
|
].
|
|
|
|
spec
|
2022-06-10 01:30:37 +00:00
|
|
|
|
2022-05-15 04:04:04 +00:00
|
|
|
]
|
2022-10-07 19:02:32 +00:00
|
|
|
|
2023-01-06 16:00:03 +00:00
|
|
|
{ #category : #accessing }
|
|
|
|
BaselineOfMiniDocs >> semanticVersion [
|
2023-01-08 00:23:06 +00:00
|
|
|
^ '0.2.0'
|
2023-01-06 16:00:03 +00:00
|
|
|
]
|
|
|
|
|
2022-10-07 19:02:32 +00:00
|
|
|
{ #category : #accessing }
|
|
|
|
BaselineOfMiniDocs >> xmlParserHTML: spec [
|
|
|
|
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']
|
|
|
|
]
|