mkwork.st 573 B

12345678910111213
  1. | hereRef |
  2. hereRef := Smalltalk imageDirectory asFileReference.
  3. Iceberg enableMetacelloIntegration: true; remoteTypeSelector: #httpsUrl.
  4. "This is optional, it fails with as well as without it. But to show it fails with newest Zinc."
  5. (Gofer new url: 'http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo60/main')
  6. package: 'ConfigurationOfZincHTTPComponents';
  7. load.
  8. #ConfigurationOfZincHTTPComponents asClass load.
  9. Metacello new baseline: 'Cryptactic'; repository: 'gitlocal:///', (hereRef / 'src') fullName; load: 'development'.
  10. Smalltalk snapshot: true andQuit: true.