Starting implementation of ExoPackages to query external packages repositories.

This commit is contained in:
= 2024-05-03 10:55:39 -05:00
parent c9aea4ac14
commit c01d31a2a9
1 changed files with 12 additions and 1 deletions

View File

@ -24,10 +24,16 @@ YQ class >> binaryFile [
^ FileLocator home / 'scoop/shims/yq.exe'
]
{ #category : #accessing }
YQ class >> exoPackage [
^ ExoPackage new
repository: self repository
]
{ #category : #accessing }
YQ class >> install [
^ ExoPackage new
repository: 'https://github.com/mikefarah/yq';
repository: self repository;
lastReleaseData
]
@ -47,3 +53,8 @@ YQ class >> jsonToYaml: aDictionary [
Smalltalk os isWindows
ifTrue: [ ^ LibC resultOfCommand: 'yq -p=json ', jsonFile fullName ].
]
{ #category : #accessing }
YQ class >> repository [
^ 'https://github.com/mikefarah/yq'
]