brpm_module_jira 0.1.9 → 0.1.10
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/brpm_module_jira.gemspec +2 -2
- data/config.yml +1 -1
- data/tests/create_read_update_delete_release_spec.rb +3 -3
- data/tests/spec_helper.rb +1 -1
- data/tests/transition_issue_spec.rb +4 -4
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MWQ5YWY1MDIzZWI1NWFjZWE0ZWQ5YmIxYjlkOTQ2YjRlOTc5MDM0Ng==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NDdkZmIwOTc0MmQwZTdjOTNkZDMxMjYzM2UzM2Q4NDZlM2UxMjdhYw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MWRmYTdlMDVlYzhjNzNiM2IyZGExZTI2MTM0ODE0ZWM3NTljZDIzYmVhNjQw
|
10
|
+
MjIzN2QyNTQzMTc2ZmEwZjVhNzZlMTI1NDhjOGQ3YzhhMzRmZmRjYTc4NGI2
|
11
|
+
ZjhlMzg2NWJkNTU3ZTE5ZjA0MmY1YTVmOGYyYTUxM2ZmZjdjZTM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NjgxNjNlYWY5ZTE2YWU3OWNjYzAzMTE4MDUwOWQ5ZDI2ZmIzNTJjNGIxODVk
|
14
|
+
OTNmY2RmMThiZmI3NTQzYWY0ZTQzOTNiZjUwMzQ2ODNlOWVlNzEzY2JiNWNi
|
15
|
+
MWExOGEwOTI5NzcxNjZiYzIyYWQwNTkxNGEzYmY5OGE1OWRhYzM=
|
data/brpm_module_jira.gemspec
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 "
|
16
|
+
spec.add_runtime_dependency "brpm_content_framework", ">=0.1.55"
|
17
17
|
|
18
18
|
if config["dependencies"]
|
19
19
|
config["dependencies"].each do |dependency|
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
modul = dependency
|
25
25
|
options = {}
|
26
26
|
end
|
27
|
-
spec.add_runtime_dependency modul, options["version"]
|
27
|
+
spec.add_runtime_dependency modul, options["version"]
|
28
28
|
end
|
29
29
|
end
|
30
30
|
|
data/config.yml
CHANGED
@@ -16,20 +16,20 @@ describe 'create/update/delete release' do
|
|
16
16
|
params = params.merge(get_integration_params_for_jira)
|
17
17
|
|
18
18
|
params["release_name"] = 'JIRA tests - release 1'
|
19
|
-
BrpmScriptExecutor.
|
19
|
+
BrpmScriptExecutor.execute_automation_script("brpm_module_jira", "create_release", params)
|
20
20
|
|
21
21
|
option = @jira_rest_client.get_option_for_dropdown_custom_field(params["jira_release_field_id"], 'JIRA tests - release 1')
|
22
22
|
expect(option).not_to be_nil
|
23
23
|
|
24
24
|
params["old_release_name"] = 'JIRA tests - release 1'
|
25
25
|
params["new_release_name"] = 'JIRA tests - release 1 - updated'
|
26
|
-
BrpmScriptExecutor.
|
26
|
+
BrpmScriptExecutor.execute_automation_script("brpm_module_jira", "update_release", params)
|
27
27
|
|
28
28
|
option = @jira_rest_client.get_option_for_dropdown_custom_field(params["jira_release_field_id"], 'JIRA tests - release 1 - updated')
|
29
29
|
expect(option).not_to be_nil
|
30
30
|
|
31
31
|
params["release_name"] = 'JIRA tests - release 1 - updated'
|
32
|
-
BrpmScriptExecutor.
|
32
|
+
BrpmScriptExecutor.execute_automation_script("brpm_module_jira", "delete_release", params)
|
33
33
|
|
34
34
|
option = @jira_rest_client.get_option_for_dropdown_custom_field(params["jira_release_field_id"], 'JIRA tests - release 1 - updated')
|
35
35
|
expect(option).to be_nil
|
data/tests/spec_helper.rb
CHANGED
@@ -16,16 +16,16 @@ describe 'transition issue' do
|
|
16
16
|
params["issue_id"] = "EF-25"
|
17
17
|
|
18
18
|
params["target_issue_status"] = "Done"
|
19
|
-
BrpmScriptExecutor.
|
19
|
+
BrpmScriptExecutor.execute_automation_script("brpm_module_jira", "transition_issue", params)
|
20
20
|
|
21
21
|
params["target_issue_status"] = "To Do"
|
22
|
-
BrpmScriptExecutor.
|
22
|
+
BrpmScriptExecutor.execute_automation_script("brpm_module_jira", "transition_issue", params)
|
23
23
|
|
24
24
|
params["target_issue_status"] = "In development"
|
25
|
-
BrpmScriptExecutor.
|
25
|
+
BrpmScriptExecutor.execute_automation_script("brpm_module_jira", "transition_issue", params)
|
26
26
|
|
27
27
|
params["target_issue_status"] = "Deployed to development"
|
28
|
-
BrpmScriptExecutor.
|
28
|
+
BrpmScriptExecutor.execute_automation_script("brpm_module_jira", "transition_issue", params)
|
29
29
|
end
|
30
30
|
end
|
31
31
|
end
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: brpm_module_jira
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Niek Bartholomeus
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-08-
|
11
|
+
date: 2015-08-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: brpm_content_framework
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - ! '>='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.1.
|
19
|
+
version: 0.1.55
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ! '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.1.
|
26
|
+
version: 0.1.55
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: brpm_module_brpm
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|