brpm_module_bladelogic 0.1.36 → 0.1.37
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 -0
- 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
|
+
MGQ2YjIwZjU2NmQzMTJiNmE5NTNjYjlhMGQ4NTY1YjcwOTRjMjU2Yg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MzI5ZjQyNWM3ZmQ2MmNlMGI1OWVkYjliZjI4YzdhOWQ0OWE1YzZmMw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MzJjNDc4OGIyYjU4NTAxYmQyZTAzZWQwNWYxMjlkOWJlOTgxNWUyZmI5YmQ3
|
10
|
+
NGJiOWQwMTJjMTczMDY2ZWE2NmQ2NjA5MGI3MjY1ZDQ2ZjM1ZmVhNjAzYzAx
|
11
|
+
YzNhYWYzN2IyMGRkZWEzMjBjMjk0NWUwYmE1ODlmZWFmMTgyMTU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MjViZTljMGMzOTRjN2U0ZGMyYTYyMThkMGMyN2UzYzJjZjQwNDBlYmM1MDUx
|
14
|
+
MDE5MGMzMmExMWQ4MDU5NjdmN2QxYTZkYjUxYjE0OGM2YzE5NzhmZTE4ZWRh
|
15
|
+
NTYwYjQ0NjE4NWEzMzY5YTE2ZWRkMWIzZjdlMWZmODJiZjFlODc=
|
data/automations/execute_job.rb
CHANGED
@@ -2,6 +2,14 @@ require 'base64'
|
|
2
2
|
require 'csv'
|
3
3
|
require 'date'
|
4
4
|
|
5
|
+
def underscore(camel_cased_word)
|
6
|
+
camel_cased_word.to_s.gsub(/::/, '/').
|
7
|
+
gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
|
8
|
+
gsub(/([a-z\d])([A-Z])/,'\1_\2').
|
9
|
+
tr("-", "_").
|
10
|
+
downcase
|
11
|
+
end
|
12
|
+
|
5
13
|
def pack_response_for_result_summaries(csv_content)
|
6
14
|
logs = csv_content[6..-1] # remove the headers of the csv file
|
7
15
|
|
data/config.yml
CHANGED