nexpose_ticketing 1.5.0 → 1.5.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5565130dee6d656e6dcf137e5b15292b463121a3
|
4
|
+
data.tar.gz: 02b652f6921f322fba0b06a1318250dee45659f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01eed6d474199dd80e903d074e6d9d29023cf5f4df33336d28e7a07a1f2f4508ac1e2574637cc1bd148aed5308f22615c2006c763a6ee2ec488c3624b71419c9
|
7
|
+
data.tar.gz: 74c9d16fe8097cbfb5baf30dd8190953ed3629a9ef08b41f7ccea40d54e886aa52147ca91bf296e1e563f8524d4429e8ea3c913301bc010fb25a58df779933c0
|
data/README.md
CHANGED
@@ -90,6 +90,10 @@ We welcome contributions to this package. We ask only that pull requests and pat
|
|
90
90
|
|
91
91
|
## Changelog
|
92
92
|
|
93
|
+
### 1.5.1
|
94
|
+
16-05-17
|
95
|
+
Minor update to change storage location of log files.
|
96
|
+
|
93
97
|
### 1.5.0
|
94
98
|
16-05-17
|
95
99
|
Added an encryption configuration file.
|
@@ -18,7 +18,8 @@ class ConfigParser
|
|
18
18
|
enc_path = custom_enc_path unless custom_enc_path.nil?
|
19
19
|
|
20
20
|
enc_path = File.expand_path(enc_path, __FILE__)
|
21
|
-
config_path = File.expand_path(config_path
|
21
|
+
config_path = File.expand_path(config_path)
|
22
|
+
|
22
23
|
|
23
24
|
generate_keys(enc_path, config_path)
|
24
25
|
encrypt_config(enc_path, config_path)
|