brpm_module_bladelogic 0.1.37 → 0.1.38
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 +8 -8
- data/automations/execute_job.rb +8 -6
- data/config.yml +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NjkzNmNjMDBiOGEwNjE2MmExYjI0YTk5NTRiMzg2ZDRmMmU3MjA0Yg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YWZkODRmNzJkMTdmYTMzZTI3Zjk5NWIwMmRmYzM4MjYxY2ZkNGYwYQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MzAyNjgzN2E0NzI2NjkwYzhkNzg2YmM1MGEwYTVmMThhYzk3YWY5ODRiMTM5
|
10
|
+
YWEzZGJmNjY1YzI0YjRlZTA3ZWFlY2ViODU2MDVkZjBmOWU0YjEwMTM1NjZm
|
11
|
+
NDFhMjBhZWZmYjExODRiY2IwMWNjNjIzZGZlZjA1MWE1Yzc2NDU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZDEwOTVmMzllNWExOTNmMzUyODBiMWUwZWM5YjU2YmQwNDdhYTVhM2Y0Y2Iy
|
14
|
+
YTBkNjdmNWFhM2FiNGU4N2UwNWJlN2UzMjNiODllM2FjMTljMzQxMDU3Mjlk
|
15
|
+
M2NiZGVhMzUyZGRjOWI2YTIxNmI5ZDVmOGJkMTQ0ZTY4NjVjZDQ=
|
data/automations/execute_job.rb
CHANGED
@@ -2,12 +2,14 @@ require 'base64'
|
|
2
2
|
require 'csv'
|
3
3
|
require 'date'
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
5
|
+
class String
|
6
|
+
def underscore
|
7
|
+
self.gsub(/::/, '/').
|
8
|
+
gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
|
9
|
+
gsub(/([a-z\d])([A-Z])/,'\1_\2').
|
10
|
+
tr("-", "_").
|
11
|
+
downcase
|
12
|
+
end
|
11
13
|
end
|
12
14
|
|
13
15
|
def pack_response_for_result_summaries(csv_content)
|
data/config.yml
CHANGED