fedux_org-stdlib 0.6.9 → 0.6.11
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/fedux_org_stdlib/app_config.rb +1 -4
- data/lib/fedux_org_stdlib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa0d7a7ab30a474b38ae886c1762c787216540ba
|
|
4
|
+
data.tar.gz: a28c29b1299b5f4e2b9db259381b785bcc9a32c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1085c790d1c8453489989abdd8cc7914e7431b98a015ee0d16bcffabea8f805d7c4bf9d60ca17d0e66b9b6481ed095c1e18a8f755ce2cae11f48bd0695f69e43
|
|
7
|
+
data.tar.gz: 3ddb778fa2e54966f92c9c87cb60b99e3edf4a1ed300f3f9019bb7104853ea8d769779cce3ed0fdbd8c98f8259bdf03073bbcdb296adbdc73ff1e87adb1b3898
|
|
@@ -166,9 +166,6 @@ module FeduxOrgStdlib
|
|
|
166
166
|
# @param [Object] config_engine (Psych)
|
|
167
167
|
# The engine to read config file
|
|
168
168
|
#
|
|
169
|
-
# @raise [Exceptions::NoConfigFileFound]
|
|
170
|
-
# If the config file could not be found
|
|
171
|
-
#
|
|
172
169
|
# @raise [Exceptions::ConfigFileNotReadable]
|
|
173
170
|
# If an avaiable config file could not be read by the config engine
|
|
174
171
|
#
|
|
@@ -191,7 +188,7 @@ module FeduxOrgStdlib
|
|
|
191
188
|
end
|
|
192
189
|
|
|
193
190
|
begin
|
|
194
|
-
yaml = Psych.
|
|
191
|
+
yaml = Psych.safe_load(File.read(file))
|
|
195
192
|
rescue StandardError => e
|
|
196
193
|
fail Exceptions::ConfigFileNotReadable, JSON.dump(message: e.message, file: file)
|
|
197
194
|
end
|