Skip to content

Instantly share code, notes, and snippets.

@gcotelli
Last active May 16, 2018 11:48
Show Gist options
  • Save gcotelli/809ef47a8d8c0c6611973041b997881c to your computer and use it in GitHub Desktop.
Save gcotelli/809ef47a8d8c0c6611973041b997881c to your computer and use it in GitHub Desktop.
String
streamContents: [ :s |
| l |
l := BootstrapSelectDeploymentLibrary default.
l fileSelectors sorted
do: [ :each |
| r |
r := l fileResourceOf: each.
s
nextPutAll: ('<1s>/<2s>' expandMacrosWith: l name with: r filepath) printString;
space;
nextPutAll: ' -> ';
nextPutAll: (GRPlatform current secureHashFor: r contents value) hex printString;
nextPutAll: '. ';
cr ] ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment