cv-tool 1.0.0 → 1.0.1
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/app/configuration.rb +2 -2
- data/lib/cv_tool/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e850c39c62df92a8650d86d78678e4671c5f9acb8ce5dbe8efbb1e8f6ba41b86
|
|
4
|
+
data.tar.gz: 11bf1851c411f62d5e024f88c3f46e82ca3c4e12c6af89b2f3b057da733ec196
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f92238fa283bdeb9266524ecbe301cdaed4cf52005a17f12ee3ad0cd4428861e3bd77208c69effba6752493307e2109b86e161cb52c5a5a989b9259427aa665
|
|
7
|
+
data.tar.gz: cfe30cf93b8aad28769bb1d7e8edcfc2bdb78fd82544af9fc5d02da781020b6e2e2943ca3a8afa43fd1b1ae59a775237997d2d06a4d2d49ae4a637fd292eb573
|
data/app/configuration.rb
CHANGED
|
@@ -2,14 +2,14 @@ require 'json'
|
|
|
2
2
|
|
|
3
3
|
@configuration = JsonParser.new File.join(ROOT, 'config/default.json')
|
|
4
4
|
@configuration.on :api_url, CVTool::Constants::API_URI
|
|
5
|
-
@configuration.on :is_ssl,
|
|
5
|
+
@configuration.on :is_ssl, false.to_s
|
|
6
6
|
|
|
7
7
|
h_api_url = lambda do |_|
|
|
8
8
|
return @configuration.parse(:api_url)
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
h_is_ssl = lambda do |_|
|
|
12
|
-
return @configuration.parse(:is_ssl).to_b
|
|
12
|
+
return @configuration.parse(:is_ssl).to_s.to_b
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
def get_config_str()
|
data/lib/cv_tool/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cv-tool
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Filip Vrba
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-03-
|
|
11
|
+
date: 2023-03-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: The tool will allow communication through a Rest API, enabling the retrieval
|
|
14
14
|
and transmission of data to and from the database. Additionally, it will provide
|