teuton-server 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/teuton-server/application.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bcfb5fc4544655cecbef9c5c9557a54a90fbebd041ad5483df858ccedd79ee99
|
|
4
|
+
data.tar.gz: 9c850da03be5838d50b864e957e12da3042b6b3388ab5f3c96c78c328c858bc7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3133974bb84c6cb7d0034b6aac0b804f9247abf725ce367d3f994d244884bc034ac43629ea58803db89ae287facf9d03db90273ca8273b300c9c4199f031ef65
|
|
7
|
+
data.tar.gz: '0975be30bfbc8492a4df7c594c330361b3bfff110dd02eb59f6955a9b3cb9a8722f5ba7b86e8e76d5a3c5d3661643e554206acc46df98f849c3b0397624230f8'
|
data/README.md
CHANGED
|
@@ -21,6 +21,6 @@ But with TeutonServer, T-NODE host listen to evaluation requests from S-NODE hos
|
|
|
21
21
|
|
|
22
22
|
## Documentation
|
|
23
23
|
|
|
24
|
-
* [Installation](docs/installation.md)
|
|
25
|
-
* [Start TeutonServer](docs/start.md)
|
|
26
|
-
* [Configuration file](docs/configfile.md)
|
|
24
|
+
* [Installation](file/docs/installation.md)
|
|
25
|
+
* [Start TeutonServer](file/docs/start.md)
|
|
26
|
+
* [Configuration file](file/docs/configfile.md)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# This module groups some global configuration params.
|
|
3
3
|
module Application
|
|
4
4
|
NAME = 'teuton-server' # Application name
|
|
5
|
-
VERSION = '0.0.
|
|
5
|
+
VERSION = '0.0.10' # Application version
|
|
6
6
|
CONFIGFILE = 'teuton-server.yaml' # Default config file name
|
|
7
7
|
PORT = 16000 # Default base port
|
|
8
8
|
end
|