brpm_content_framework 0.2.11 → 0.2.12
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/infrastructure/module_template/module.gemspec +1 -4
- data/lib/brpm_auto.rb +1 -1
- data/tests/brpm_script_executor_spec.rb +0 -13
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NzE0MjViNmEzMzg3ZTNhODA4NjY4YjE3ZGUzN2IxMWU2Nzk1YWE1MQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NjcxZThmYjgwODM2OTQ5Yjg4MGJlZTVkZWFiNzNiMjg0MTU4NDQzMA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MDVmZjM3Y2RhOWUzMzI0NTUxYmJiOTFkOGM0MDRjOTg5NjIwNzZjN2NjOGU2
|
10
|
+
OWM5NmFhYTdjMThiN2RmOGNiZDE0MTU2YTdjMTIwMTI1MzZkN2VkYmE3MzFl
|
11
|
+
ZjVhOTNjYWVlNTRiZDE4NzUzZGMyOTI3NmM0OGMxNWEyYjg4MTU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTU3NDY2OTU4ZjFjYzNiMWY4NjkyZWI5NGNkZDkyMjc5Zjk3YTZiMDNlYzdi
|
14
|
+
ZDQ3N2RkYmE5ZGRmYWMxNzNiNWIyNGE3ZDYyOWIxZjZhY2M4MTI0MjhiZWZk
|
15
|
+
Mzc0NTQ5NGQ2YzNlMDkzMTViYmE1M2FkODZlYTZkZDE2M2M0NjY=
|
data/config.yml
CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.summary = config["summary"]
|
14
14
|
spec.description = config["description"]
|
15
15
|
|
16
|
-
spec.add_runtime_dependency "brpm_content_framework", ">=0.
|
16
|
+
spec.add_runtime_dependency "brpm_content_framework", ">=0.2.11"
|
17
17
|
|
18
18
|
if config["dependencies"]
|
19
19
|
config["dependencies"].each do |dependency|
|
@@ -32,8 +32,5 @@ Gem::Specification.new do |spec|
|
|
32
32
|
spec.add_development_dependency "rspec"
|
33
33
|
|
34
34
|
spec.files = `git ls-files`.split("\n")
|
35
|
-
spec.require_path = 'lib'
|
36
|
-
|
37
35
|
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
38
|
-
spec.bindir = "bin"
|
39
36
|
end
|
data/lib/brpm_auto.rb
CHANGED
@@ -29,19 +29,6 @@ describe 'BRPM Script Executor' do
|
|
29
29
|
end
|
30
30
|
end
|
31
31
|
|
32
|
-
# these tests dont work because the gem brpm_module_test is not included in the Gemfile, best to move them out to a separate project
|
33
|
-
# it "should execute an automation script in-process" do
|
34
|
-
# expect{BrpmScriptExecutor.execute_automation_script("brpm_module_test", "test_ruby", get_default_params)}.not_to raise_exception
|
35
|
-
# end
|
36
|
-
#
|
37
|
-
# it "should return false when executing an non-existing automation script in-process" do
|
38
|
-
# expect{BrpmScriptExecutor.execute_automation_script("brpm_module_test", "xxx", get_default_params)}.to raise_exception
|
39
|
-
# end
|
40
|
-
#
|
41
|
-
# it "should return false when executing an erroneous automation script in-process" do
|
42
|
-
# expect{BrpmScriptExecutor.execute_automation_script("brpm_module_test", "test_ruby_raises_error", get_default_params)}.to raise_exception
|
43
|
-
# end
|
44
|
-
|
45
32
|
it "should execute an automation script in a separate process" do
|
46
33
|
result = BrpmScriptExecutor.execute_automation_script_in_separate_process("brpm_module_test", "test_ruby", get_default_params)
|
47
34
|
|