brpm_content 0.1.33 → 0.1.34
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/modules/framework/config.yml +1 -1
- data/modules/framework/lib/module_installer.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZmVmMDAzMjQ5NmY3Yzk4ZmUwNDVmZmM3MmI0YTBkOGY0YmNhM2I2Yw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZTMyOTI5OTA0YzhkYzg0NGVkZTc2OTYzOWQ4ZjM1MDBiM2NmMjZmMg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YzQ5YjUzNWU5ODM1NWI3OTQ2NWVlZDhjMjA5M2I1NTg2YzIzOTIwY2IzMDNi
|
|
10
|
+
Zjc0MDM1OTBjOTM4MTBiMTY4NzViNDk0MzI5MGU0OWVmMGI2NjM4MjFhM2Qw
|
|
11
|
+
ZDdlYmY4MmJmYjgwZTkyNjkzOTNlZjliMzY0OTE1Y2U0NjM4ZGM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NWFlYTQxZjAyNTA1MmNlNDI5YWQyNDM5OGUwMGQzOWIyZTEwMjY2MzI5MjIy
|
|
14
|
+
ZjU0OTc4MjYxYzQyZmJjNzBjNTEzYjgwZDQ2MmYzZjc5YzQ0NmU2M2I4Y2I2
|
|
15
|
+
NzM0N2E0Njk0NmU0ZDJhZjVkZWMzNDI5OTQxODAyNTE4OTFlMDM=
|
|
@@ -3,7 +3,7 @@ class ModuleInstaller
|
|
|
3
3
|
BrpmAuto.log "Installing module #{module_name} #{module_version.nil? ? "" : module_version}..."
|
|
4
4
|
|
|
5
5
|
specs = install_gem(module_name, module_version)
|
|
6
|
-
module_spec = specs.
|
|
6
|
+
module_spec = specs.find { |spec| spec.name == module_name}
|
|
7
7
|
|
|
8
8
|
install_bundle_if_necessary(module_spec)
|
|
9
9
|
|
|
@@ -233,7 +233,7 @@ class ModuleInstaller
|
|
|
233
233
|
wrapper_script_content += "\n"
|
|
234
234
|
wrapper_script_content += get_integration_server_template(integration_server["id"], integration_server["name"], auto_script_config["integration_server_type"])
|
|
235
235
|
else
|
|
236
|
-
BrpmAuto.log "WARNING - An integration server of type #{auto_script_config["integration_server_type"]} doesn't exist so not setting the integration server in the wrapper script."
|
|
236
|
+
BrpmAuto.log "WARNING - An integration server of type #{auto_script_config["integration_server_type"]} (or that has #{auto_script_config["integration_server_type"]} in its name if the integration server type is not supported) doesn't exist so not setting the integration server in the wrapper script."
|
|
237
237
|
end
|
|
238
238
|
end
|
|
239
239
|
|