Browse Source

Regression for 21335.

Herby Vojčík 6 years ago
parent
commit
7317ec16ef

+ 11 - 0
.gitignore

@@ -0,0 +1,11 @@
+# Created by .ignore support plugin (hsz.mobi)
+/*.changes
+/*.image
+/stderr*
+/stdout*
+/PharoDebug.log
+/github-cache/
+/pharo-local/
+/cryptactic.db
+/export/
+!/export/.sentinel

+ 0 - 7
README.md

@@ -1,7 +0,0 @@
-# cryptactic-backend
-
-Backend server of cryptactic.
-
-- collects xchg tickers
-- stores tickers into db
-- silent-pushes apps w/ current tickers

+ 13 - 0
conf/mkwork.st

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

+ 3 - 0
src/.properties

@@ -0,0 +1,3 @@
+{
+	#format : #tonel
+}

+ 30 - 0
src/BaselineOfCryptactic/BaselineOfCryptactic.class.st

@@ -0,0 +1,30 @@
+Class {
+	#name : #BaselineOfCryptactic,
+	#superclass : #BaselineOf,
+	#category : #BaselineOfCryptactic
+}
+
+{ #category : #baselines }
+BaselineOfCryptactic >> baseline: spec [
+   <baseline>
+	spec for: #common do: [ spec
+
+		package: 'Cryptactic' with: [ spec
+			requires: #('NeoJSON' 'NeoCSV') ];
+		package: 'Cryptactic-Tests' with: [ spec
+			requires: #('Cryptactic' 'Mocketry') ];
+
+		configuration: 'NeoJSON' with: [ spec
+			version: #stable;
+			repository: 'http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo60/main' ];
+		configuration: 'NeoCSV' with: [ spec
+			version: #stable;
+			repository: 'http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo60/main' ];
+		baseline: 'Mocketry' with: [ spec
+			repository: 'github://dionisiydk/Mocketry:v4.0.x' ];
+
+		group: 'default' with: #('Core');
+		group: 'development' with: #('Core' 'Tests');
+		group: 'Core' with: #('Cryptactic');
+		group: 'Tests' with: #('Cryptactic-Tests') ]
+]

+ 1 - 0
src/BaselineOfCryptactic/package.st

@@ -0,0 +1 @@
+Package { #name : #BaselineOfCryptactic }

+ 1 - 0
src/Cryptactic-Tests/package.st

@@ -0,0 +1 @@
+Package { #name : #'Cryptactic-Tests' }

+ 1 - 0
src/Cryptactic/package.st

@@ -0,0 +1 @@
+Package { #name : #Cryptactic }