github_activities 0.4.1 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- 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: 0c649a91a863bf1abe1d5b764d00f764adafe812
|
4
|
+
data.tar.gz: cc312702cdc802b50a3ceb991e3d574c5f2663ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3090a4720c230c16ace7a3dd7a0028708bd27c47f9ae0a2235cb896051401c015f448b8a42fe9dcdbeae0fcdcdc14d3f941a04617f3422a757609c9a889011bd
|
7
|
+
data.tar.gz: 54106dd95502c782c42e4f9a08ee62f76be300d3cce4346235b8df6c3af2b40c80b575d48eaef139dbcf21a261d34b98b26c37b935bfe36cb1707160809d2703
|
@@ -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\n\*?(?<person_in_charge>.*).*### How to test to sprint review\n\*?(?<test_procedure>.*).*### Release note\n(?<release_note>.*).*### Purpose\n(?<purpose>.*).*### Testcases\n(?<
|
20
|
+
/### The person in charge\n\*?(?<person_in_charge>.*).*### How to test to sprint review\n\*?(?<test_procedure>.*).*### Release note\n(?<release_note>.*).*### Purpose\n(?<purpose>.*).*### Testcases\n(?<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
|