BaselineOfCryptactic.class.st 921 B

123456789101112131415161718192021222324252627282930
  1. Class {
  2. #name : #BaselineOfCryptactic,
  3. #superclass : #BaselineOf,
  4. #category : #BaselineOfCryptactic
  5. }
  6. { #category : #baselines }
  7. BaselineOfCryptactic >> baseline: spec [
  8. <baseline>
  9. spec for: #common do: [ spec
  10. package: 'Cryptactic' with: [ spec
  11. requires: #('NeoJSON' 'NeoCSV') ];
  12. package: 'Cryptactic-Tests' with: [ spec
  13. requires: #('Cryptactic' 'Mocketry') ];
  14. configuration: 'NeoJSON' with: [ spec
  15. version: #stable;
  16. repository: 'http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo60/main' ];
  17. configuration: 'NeoCSV' with: [ spec
  18. version: #stable;
  19. repository: 'http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo60/main' ];
  20. baseline: 'Mocketry' with: [ spec
  21. repository: 'github://dionisiydk/Mocketry:v4.0.x' ];
  22. group: 'default' with: #('Core');
  23. group: 'development' with: #('Core' 'Tests');
  24. group: 'Core' with: #('Cryptactic');
  25. group: 'Tests' with: #('Cryptactic-Tests') ]
  26. ]