Installation baseline started.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-05-14 23:04:04 -05:00
parent 439d8a0216
commit 55b6708b06
3 changed files with 22 additions and 1 deletions

View File

@ -1,3 +1,3 @@
# MiniDocs
MiniDocs is a project that includes several minimalistic documentation tools used by the [Grafoscopio](https://mutabit.com/grafoscopio/en.html) community, starting with [Markdeep](https://casual-effects.com/markdeep/)and its integrations with [Lepiter](https://lepiter.io/feenk/introducing-lepiter--knowledge-management--e2p6apqsz5npq7m4xte0kkywn/).
MiniDocs is a project that includes several minimalistic documentation tools used by the [Grafoscopio](https://mutabit.com/grafoscopio/en.html) community, starting with [Markdeep](https://casual-effects.com/markdeep/) and its integrations with [Lepiter](https://lepiter.io/feenk/introducing-lepiter--knowledge-management--e2p6apqsz5npq7m4xte0kkywn/).

View File

@ -0,0 +1,20 @@
Class {
#name : #BaselineOfMiniDocs,
#superclass : #BaselineOf,
#category : #BaselineOfMiniDocs
}
{ #category : #accessing }
BaselineOfMiniDocs >> baseline: spec [
<baseline>
spec
for: #common
do: [
"Packages"
spec
package: 'MiniDocs'
with: [ spec requires: #('Mustache') ]
].
spec
baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache']
]

View File

@ -0,0 +1 @@
Package { #name : #BaselineOfMiniDocs }