Starting interface with Taskwarrior. It may become its own repository later.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2024-07-28 10:57:59 -05:00
parent 47eaafaf5c
commit 554fb9000e
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,15 @@
Class {
#name : #AcroReport,
#superclass : #Object,
#category : #MiniDocs
}
{ #category : #accessing }
AcroReport class >> project: projectName [
| jsonReport |
jsonReport := (GtSubprocessWithInMemoryOutput new
shellCommand: 'task project:', projectName , ' export';
runAndWait;
stdout).
^ STONJSON fromString: jsonReport
]

View File

@ -15,6 +15,11 @@ LeTextCoderSnippetElement >> asLePage [
^ newPage ^ newPage
] ]
{ #category : #'*MiniDocs' }
LeTextCoderSnippetElement >> asSnippetViewModel [
^ self snippetContent
]
{ #category : #'*MiniDocs' } { #category : #'*MiniDocs' }
LeTextCoderSnippetElement >> moveToPageTitled: pageName [ LeTextCoderSnippetElement >> moveToPageTitled: pageName [
| db origin destination | | db origin destination |