brpm_content_framework 0.2.51 → 0.2.52
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/bin/brpm_install +4 -1
- data/bin/brpm_uninstall +4 -1
- data/bin/build_docker_image +4 -1
- data/bin/publish_docker_image +4 -1
- 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
|
+
NjNiNmVmMDUzMDIxN2Q4Zjg2MGQyZDUwYmYyMzAyNjlhZjQ4YjhjMA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YjdlOGI0NjBlYjk1ODkwZDRhNzg5ODEwMDZlZDQzOTM1ODk0ZDRiZg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
Mzc2MGFiMDM0MDQ3MGM3ZGM3YzMxN2FkNDZlYzI1NWU2ODMyODRhZmVjNTIx
|
|
10
|
+
M2ZkYThiZjExNDFhNDk1MjJjYzAzMDEzNzI5ODU5Y2IxNmIyMmIyNGJhNTkx
|
|
11
|
+
OWVhOGM0MDY1ODVjM2Y4NjEwZTQzNDM2YWY4OTdhMzcwYjQzZGU=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZGVmYjIwMGUzY2RlNGUwYTQ1ZjY3NzFkYTU3NWI0ZmVhMTJhMTIwYjg1MmYx
|
|
14
|
+
M2JjNzAzY2Y5YjU2YzI5ZGM3M2UzNWViOWU2MzRmMDIyZWQwYWExZWVjNzE5
|
|
15
|
+
MGQ2MzU5MGNkOGQ3MjJjZDM2OTRhYjMzY2FmNDA5ZDgxOWI0MWM=
|
data/bin/brpm_install
CHANGED
|
@@ -11,7 +11,10 @@ require "brpm_auto"
|
|
|
11
11
|
require "module_installer"
|
|
12
12
|
|
|
13
13
|
begin
|
|
14
|
-
|
|
14
|
+
params = {}
|
|
15
|
+
params["log_file"] = "#{Dir.tmpdir}/brpm_install.log"
|
|
16
|
+
params["also_log_to_console"] = "true"
|
|
17
|
+
BrpmAuto.setup(params)
|
|
15
18
|
|
|
16
19
|
module_name_or_path = ARGV[0]
|
|
17
20
|
module_version = ARGV[1] # optional
|
data/bin/brpm_uninstall
CHANGED
|
@@ -11,7 +11,10 @@ require "brpm_auto"
|
|
|
11
11
|
require "module_installer"
|
|
12
12
|
|
|
13
13
|
begin
|
|
14
|
-
|
|
14
|
+
params = {}
|
|
15
|
+
params["log_file"] = "#{Dir.tmpdir}/brpm_install.log"
|
|
16
|
+
params["also_log_to_console"] = "true"
|
|
17
|
+
BrpmAuto.setup(params)
|
|
15
18
|
|
|
16
19
|
module_name = ARGV[0]
|
|
17
20
|
module_version = ARGV[1] # optional
|
data/bin/build_docker_image
CHANGED
|
@@ -11,7 +11,10 @@ require 'tmpdir'
|
|
|
11
11
|
require "brpm_auto"
|
|
12
12
|
|
|
13
13
|
begin
|
|
14
|
-
|
|
14
|
+
params = {}
|
|
15
|
+
params["log_file"] = "#{Dir.tmpdir}/brpm_install.log"
|
|
16
|
+
params["also_log_to_console"] = "true"
|
|
17
|
+
BrpmAuto.setup(params)
|
|
15
18
|
|
|
16
19
|
if File.directory?(File.expand_path(ARGV[0]))
|
|
17
20
|
module_path = File.expand_path(ARGV[0])
|
data/bin/publish_docker_image
CHANGED
|
@@ -9,7 +9,10 @@ require 'tmpdir'
|
|
|
9
9
|
require "brpm_auto"
|
|
10
10
|
|
|
11
11
|
begin
|
|
12
|
-
|
|
12
|
+
params = {}
|
|
13
|
+
params["log_file"] = "#{Dir.tmpdir}/brpm_install.log"
|
|
14
|
+
params["also_log_to_console"] = "true"
|
|
15
|
+
BrpmAuto.setup(params)
|
|
13
16
|
|
|
14
17
|
module_path = File.expand_path(ARGV[0])
|
|
15
18
|
|
data/config.yml
CHANGED