brpm_content_framework 0.2.5 → 0.2.6
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/tests/brpm_script_executor_spec.rb +6 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZjQ4ZmU3ZDk0Y2Q1NWJhM2UyN2Q4MGE1YTkyMGU0NjUzNDc4MDgzYw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NDFmMzJlNzNiZTg2YTA4MTA5ZjA0MTYzMzlmY2Y5OGI5ZDU3NmRhOA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YmQ4OGM3ZjkzODdlMzQ1NjU0MmNkOTc5MGM5MGZjNmE2ZGJhMzYzNmI3NDA3
|
10
|
+
Zjk1Njc2NmQ2OGYxMjliN2I1NzA4MmRhMWQ4MjJiY2E0Y2M2OTYzYzU1ZmIw
|
11
|
+
YTc2NTQxMzI3ODc5ZTA0MTI2YTZkMGZmNjAwNDdhOGExMDQzZTk=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YjE5YTY4MjhlYmRhNDg0YWZmYzNjODQ2ZDJlMjhjNDllZmNmOTg3ZDRhZDQ2
|
14
|
+
YzdhMWEyYTQyMTQ1NTI3Y2YxNzc4NDYzODU1ZjM0MjE4Mzc2MDdhNTRmMjVk
|
15
|
+
NmVkZDQ2YzZkMTY1NWRhNjUyMzA3NGVlNDVhMjVmYzdhNzZjOTk=
|
data/config.yml
CHANGED
@@ -16,11 +16,16 @@ describe 'BRPM Script Executor' do
|
|
16
16
|
ENV["GEM_HOME"] = "#{ENV["BRPM_HOME"]}/modules"
|
17
17
|
Gem.paths = ENV
|
18
18
|
|
19
|
+
# TODO: get this to work to avoid race conditions waiting for the new gem version to be 'rake release'ed to rubygems
|
20
|
+
# BrpmAuto.log "Doing a 'rake install' to install brpm_content_framework as a gem..."
|
21
|
+
# result = Bundler.clean_system("export GEM_HOME=#{ENV["GEM_HOME"]} && cd .. && rake install")
|
22
|
+
# raise "rake install failed" unless result
|
23
|
+
|
19
24
|
BrpmAuto.log "Installing brpm_module_test..."
|
20
25
|
specs = Gem.install("brpm_module_test")
|
21
26
|
spec = specs.find { |spec| spec.name == "brpm_module_test"}
|
22
27
|
BrpmAuto.log "Bundle install..."
|
23
|
-
result = Bundler.clean_system("export GEM_HOME=#{ENV["GEM_HOME"]}
|
28
|
+
result = Bundler.clean_system("export GEM_HOME=#{ENV["GEM_HOME"]} && export BUNDLE_GEMFILE=#{spec.gem_dir}/Gemfile && bundle install")
|
24
29
|
raise "bundle install failed" unless result
|
25
30
|
end
|
26
31
|
end
|