data_collector 0.46.0 → 0.48.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/data_collector/config_file.rb +2 -1
- data/lib/data_collector/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: a2ff44511573c07feff72ad0f913872f4adb9ea0a2214211a0db0ddf662451e9
|
4
|
+
data.tar.gz: 64e6a02ba633e39501d82546a4713c09cffcab80f8a51055b19545e1441cc75f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28c79641b5aed0ab4c19e45b983d9035fc8df8e599f0b623fbed0621608cfbe4cc7e5a65760543ed8cf1ea96bfd2cb2106d6fa64e34ce093b964bc214d794e44
|
7
|
+
data.tar.gz: cd5fae42b8843ca61adad6679b24ec1350740fe62eea258e188b85490c1db0da04e5080428e77e7427e938702878390fc11916af0d5581362c78bcfce7429544
|
@@ -53,12 +53,13 @@ module DataCollector
|
|
53
53
|
end
|
54
54
|
|
55
55
|
def self.init
|
56
|
+
@config_file_name = 'config.yml' if @config_file_name.nil?
|
56
57
|
discover_config_file_path
|
57
58
|
raise Errno::ENOENT, "#{@config_file_path}/#{@config_file_name} Not Found. Set path to #{@config_file_name}" unless File.exist?("#{@config_file_path}/#{@config_file_name}")
|
58
59
|
|
59
60
|
ftime = File.exist?("#{@config_file_path}/#{@config_file_name}") ? File.mtime("#{@config_file_path}/#{@config_file_name}") : nil
|
60
61
|
if @config.empty? || @mtime != ftime
|
61
|
-
config = YAML::load_file("#{@config_file_path}/#{@config_file_name}", permitted_classes: [Time, Symbol])
|
62
|
+
config = YAML::load_file("#{@config_file_path}/#{@config_file_name}", aliases: true, permitted_classes: [Time, Symbol])
|
62
63
|
@config = process(config)
|
63
64
|
end
|
64
65
|
end
|