github_activities 0.4.3 → 0.4.4
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 +4 -4
- data/lib/github_activities/milestones.rb +1 -1
- data/lib/github_activities/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8ef9d5c3520f5fc9afa5bf113867f75e454bd461
|
4
|
+
data.tar.gz: 58ff723afd181bd918b94026e083276c8aa4dc01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 914d788825355ff634e8cfa08ad19d5b606794bd3b0bd3177efa2530b0f1b7d3181e2e7da497813c33688ee613ba06a281e2ae7606118bca896530fb0f6421e6
|
7
|
+
data.tar.gz: 4fc83a3e9cd66e3d3983af46acfb59f3d9ebf8f3596126a6e4549861672f6b73c324d589e01bafbb97b65b83027714d39e3948249c56fc59ed2bb894b55e53f8
|
@@ -17,7 +17,7 @@ module GithubActivities
|
|
17
17
|
CSV.open("#{milestone}.csv", 'w') do |csv|
|
18
18
|
csv << ["スプリントRv前確認", "Author", "案件概要", "プルリクエスト(修正コード)", "確認担当", "リリース判定", "備考", '確認方法', 'リリースノート', '目的', 'テストケース' "issue内容"]
|
19
19
|
list_issues.each do |issue|
|
20
|
-
/### The person in charge
|
20
|
+
/### The person in charge\*?(?<person_in_charge>.*).*### How to test to sprint review\*?(?<test_procedure>.*).*### Release note(?<release_note>.*).*### Purpose(?<purpose>.*).*### Testcases(?<testcases>.*)$/m =~ issue.body
|
21
21
|
csv << ['', issue.user.login, issue.title, issue.html_url, person_in_charge&.strip, '', '', test_procedure, release_note, purpose, testcases, issue.body]
|
22
22
|
end
|
23
23
|
end
|