brpm_content_framework 0.2.36 → 0.2.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/config.yml +1 -1
- data/docker/Dockerfile +1 -1
- data/lib/module_installer.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NTZkNmRlZWY5YWI0ODQ2Yzk0ODdkODFkMjVlNmUwZmJlMTdlMzFiMQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NzAyNzU3Y2Q5NjkzODZkNTAzNjlhM2E0OWI3MmY5NTc1NTc2YTlkOQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MGE0YzE3YTVkYTAyM2Q2YjU3OTNiNGFmZjEzMWEwZTNiZTM2MWRiMjU3ZjEy
|
|
10
|
+
OWJkMDk4YzFlNzU2NGNlZDRhNTJjYWYxNDU2ZjI1MTU5NzVhMDBmOTFjNjYx
|
|
11
|
+
YjM0OWIzM2FiMTZiOThkNzZjNTk1ODE4NTI0NjM0MWI3NzFlZWU=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
OThlMjc5ZDJkNTE5YTBjNDYwZmZiM2YxYjBhODA5ZmNjNWI1MTE5Y2RhNjEy
|
|
14
|
+
NDZjNTc1NDdhZDc3Zjk3YThhMTc5YTg2MWM4ZWFiYTNhYzIxMjg1YjViMjQx
|
|
15
|
+
MGZjOGQ4MGRlMWMxNzYxODkxNDcxN2NhNTMyY2Q3Mjk5NzdiYTA=
|
data/config.yml
CHANGED
data/docker/Dockerfile
CHANGED
|
@@ -4,7 +4,7 @@ MAINTAINER Niek Bartholomeus <niek.bartholomeus@gmail.com>
|
|
|
4
4
|
ENV BRPM_CONTENT_FRAMEWORK_VERSION 1.0.0
|
|
5
5
|
ENV GEM_HOME /usr/lib/ruby/gems/1.9.1
|
|
6
6
|
|
|
7
|
-
RUN gem install brpm_content_framework --ignore-dependencies -v "$BRPM_CONTENT_FRAMEWORK_VERSION" && \
|
|
7
|
+
RUN gem install "brpm_content_framework" --ignore-dependencies -v "$BRPM_CONTENT_FRAMEWORK_VERSION" && \
|
|
8
8
|
cd "$GEM_HOME/gems/brpm_content_framework-$BRPM_CONTENT_FRAMEWORK_VERSION" && \
|
|
9
9
|
bundle install && \
|
|
10
10
|
rm -rf "$GEM_HOME/cache"
|
data/lib/module_installer.rb
CHANGED
|
@@ -172,6 +172,7 @@ class ModuleInstaller
|
|
|
172
172
|
when "always", "if_docker_image_exists"
|
|
173
173
|
BrpmAuto.log "Pulling the docker image from the Docker Hub..."
|
|
174
174
|
output = `docker pull bmcrlm/#{spec.name}:#{spec.version}`
|
|
175
|
+
BrpmAuto.log output
|
|
175
176
|
unless output =~ /Image is up to date for/
|
|
176
177
|
if BrpmAuto.global_params["execute_automation_scripts_in_docker"] == "always"
|
|
177
178
|
raise "Docker image bmcrlm/#{spec.name}:#{spec.version} doesn't exist."
|