github_activities 0.3.0 → 0.4.0
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 +3 -2
- data/lib/github_activities/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e67a918f3726e2268e75e0f8860756f731cdc19
|
4
|
+
data.tar.gz: '0840d0da041a951fd9c252ffd55e735c1eed72c4'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a92e24895454f745600cf2bd0ab55780aee0d4ed84741595952c8c7b4f2a594bbe961e664bb31d3f300b9a7e37ef8558cf2b2f7a4785f7b532cc98c22439d130
|
7
|
+
data.tar.gz: 0673050b7a2a2fda86dce53db03a4d357b362af0d8b061c899f5416c29be88a2033416c7ffb2bb07945ca5c5f720932b3d047da321b161f7d9eb3be2211898c1
|
@@ -15,9 +15,10 @@ module GithubActivities
|
|
15
15
|
client = Octokit::Client.new
|
16
16
|
list_issues = client.list_issues(repository, state: :all, milestone: milestone, accept: 'application/vnd.github.symmetra-preview+json')
|
17
17
|
CSV.open("#{milestone}.csv", 'w') do |csv|
|
18
|
-
csv << ["スプリントRv前確認", "Author", "案件概要", "プルリクエスト(修正コード)", "確認担当", "リリース判定", "備考", "issue内容"]
|
18
|
+
csv << ["スプリントRv前確認", "Author", "案件概要", "プルリクエスト(修正コード)", "確認担当", "リリース判定", "備考", '確認方法', 'リリースノート', '目的', 'テストケース' "issue内容"]
|
19
19
|
list_issues.each do |issue|
|
20
|
-
|
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(?<test_cases>.*)$/m =~ issue.body
|
21
|
+
csv << ['', issue.user.login, issue.title, issue.html_url, person_in_charge.strip, '', '', test_procedure, release_note, purpose, testcases, issue.body]
|
21
22
|
end
|
22
23
|
end
|
23
24
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github_activities
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- nyaahara
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-10-
|
11
|
+
date: 2018-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|