Adding VideoWeb as a dependency.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2024-03-29 19:05:22 -05:00
parent 0f6bcbe6b2
commit beac5afca1
1 changed files with 13 additions and 1 deletions

View File

@ -13,8 +13,11 @@ BaselineOfTiddlyWikiPharo >> baseline: spec [
"Dependencies"
spec baseline: 'ZTimestamp' with: [ spec repository: 'github://svenvc/ztimestamp/repository' ].
self miniDocs: spec.
self videWeb: spec.
"Packages"
spec package: 'TiddlyWiki' with: [ spec requires: #('ZTimestamp' 'MiniDocs') ]
spec
package: 'TiddlyWiki'
with: [ spec requires: #('ZTimestamp' 'MiniDocs' 'VideoWeb') ]
]
]
@ -37,3 +40,12 @@ BaselineOfTiddlyWikiPharo >> miniDocs: spec [
BaselineOfTiddlyWikiPharo >> projectClass [
^ MetacelloCypressBaselineProject
]
{ #category : #baselines }
BaselineOfTiddlyWikiPharo >> videWeb: spec [
| repo |
repo := ExoRepo new
repository: 'https://code.sustrato.red/Offray/VideoWeb'.
repo load.
spec baseline: 'VideoWeb' with: [ spec repository: 'gitlocal://', repo local fullName ]
]