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
|
|
|
|
baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache'].
|
|
|
|
|
2022-05-15 04:04:04 +00:00
|
|
|
"Packages"
|
|
|
|
spec
|
2022-07-17 02:47:46 +00:00
|
|
|
package: 'MiniDocs'
|
2022-05-15 04:04:04 +00:00
|
|
|
with: [ spec requires: #('Mustache') ]
|
|
|
|
].
|
|
|
|
spec
|
2022-06-10 01:30:37 +00:00
|
|
|
|
2022-05-15 04:04:04 +00:00
|
|
|
]
|