kdeploy 1.2.15 → 1.2.16
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/lib/kdeploy/configuration.rb +1 -1
- data/lib/kdeploy/version.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: ac8405b033f62a2cee9898ad0fcffbbd8f4f88030ca3d862e11c8cd3313883e3
|
|
4
|
+
data.tar.gz: 871df2896e51d432025ba4c944bef28f00fb20cb709d2548b7f24fb7fbcf8a4c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 580257284cdaba84052ee3d9996ec7c3344283e7954b8725254e5042a7d2fc6e3f7c711e7b548e3ca22005707595f2bf9f2644f3655d34b5927acb9a779ba94e
|
|
7
|
+
data.tar.gz: abe0a760b76fca87c3441bff5f0b081fa6dd2c61f06aeaec1cd5b365d4291af271ed731d52b6d8f3afc377dca25365eb7407b8d09faa421ca2f6ce876096902d
|
|
@@ -25,7 +25,7 @@ module Kdeploy
|
|
|
25
25
|
config_path ||= find_config_file
|
|
26
26
|
return unless config_path && File.exist?(config_path)
|
|
27
27
|
|
|
28
|
-
config = YAML.
|
|
28
|
+
config = YAML.safe_load_file(config_path, permitted_classes: [Symbol])
|
|
29
29
|
apply_config(config)
|
|
30
30
|
rescue StandardError => e
|
|
31
31
|
warn "Warning: Failed to load config from #{config_path}: #{e.message}"
|
data/lib/kdeploy/version.rb
CHANGED