jira-auto-tool 1.1.3 → 1.1.5
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dcecb56b5f19c1cd8b4b54e50ccd801bff0e6179d0adc4c379855263dc698498
|
4
|
+
data.tar.gz: 021b5d028d7469d1466b324a69ace618d9973bde7c5c6f1b32df8adb1582d73a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80c9790171b5014a76ffcae1eae4391e7afd30fd667a48e27bd952e78e1af711e19f5c34cb030782d553de21707610d8c552a17d404f4afd755678b45b56caec
|
7
|
+
data.tar.gz: 7e6ea437118ada049d32f04619224de79bf6f42c3882a02e2c741c510b8a33aa9888675773ce9a9abafd5ec0adfdb32b03af46c91868b6e3ee7882aa71812d8f
|
@@ -1,6 +1,6 @@
|
|
1
1
|
---
|
2
2
|
<%
|
3
|
-
project_key = "
|
3
|
+
project_key = "JATCIDEVLX"
|
4
4
|
sprint_field_name = "Sprint"
|
5
5
|
jira_username = "cbroult@yahoo.com"
|
6
6
|
%>
|
@@ -12,10 +12,10 @@ IMPLEMENTATION_TEAM_FIELD_NAME: "Implementation Team"
|
|
12
12
|
JAT_RATE_INTERVAL_IN_SECONDS:
|
13
13
|
JAT_RATE_LIMIT_IN_SECONDS:
|
14
14
|
JAT_TICKETS_FOR_TEAM_SPRINT_TICKET_DISPATCHER_JQL: "project = <%= project_key %> AND <%= sprint_field_name %> IS EMPTY"
|
15
|
-
JIRA_BOARD_NAME: "<%= project_key %> -
|
15
|
+
JIRA_BOARD_NAME: "<%= project_key %> - Delivery"
|
16
16
|
JIRA_BOARD_NAME_REGEX: "<%= project_key %>|ART 16|unconventional board name"
|
17
|
-
JIRA_CONTEXT_PATH: /jira
|
18
|
-
|
17
|
+
#JIRA_CONTEXT_PATH: /jira
|
18
|
+
JIRA_CONTEXT_PATH:
|
19
19
|
JIRA_PROJECT_KEY: <%= project_key %>
|
20
20
|
JIRA_SITE_URL: http://cbroult.atlassian.net:443/
|
21
21
|
JIRA_SPRINT_FIELD_NAME: "<%= sprint_field_name %>"
|
@@ -137,11 +137,13 @@ module Jira
|
|
137
137
|
allow(environment_loader).to receive_messages(config_file_content: "file_content")
|
138
138
|
|
139
139
|
allow(YAML)
|
140
|
-
.to receive(:safe_load)
|
141
|
-
|
140
|
+
.to receive(:safe_load)
|
141
|
+
.with("file_content")
|
142
|
+
.and_return({ "a_key" => "a_value", "another_key" => "another_value", "yet_another_key" => 16 })
|
142
143
|
|
143
144
|
expect(ENV).to receive(:[]=).with("a_key", "a_value")
|
144
145
|
expect(ENV).to receive(:[]=).with("another_key", "another_value")
|
146
|
+
expect(ENV).to receive(:[]=).with("yet_another_key", "16")
|
145
147
|
|
146
148
|
environment_loader.send(:setup)
|
147
149
|
end
|