git_release_notes 0.0.2 → 0.0.3

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: 50469c04df077ddd3d7de4d834f4d1268cdc47ba1cf86b9a43c723b88caa0cdd
4
- data.tar.gz: df3c3fbe9d2e3d4b07285f8ee6dd8b5f19ab72c59c6c2692f6b053b575481978
3
+ metadata.gz: ccc639c1004b90bb255c80fb7a23bb436c8df2b9407b56380d1c1c64d906e104
4
+ data.tar.gz: 6b3a51d00a9e0b04d59001054c236cf2b5aad4ada74c6575e42415b951ea42d6
5
5
  SHA512:
6
- metadata.gz: 1f6afa38a975d86201b8e92400afe5c6d8ceaf329305156973e477ba7f8c511e3c79ad5566bae70354b14eaf88886d59ec8bfc3196430461b4a21e845f7e12e1
7
- data.tar.gz: a0ebfa57bfb2e1bb065efd24623f019ddb16e4691f44f59c75d02a6f14f3bdac2fc6cbdad263f05a31d2b576177819fa3568f02f4fb62db5e82054d8a0204dc4
6
+ metadata.gz: 6a55108483314f22b73722b0b3272c94cb31c08c05c8c935cf99ca8a505ec16af01a3f6a7be9d5c973472aace29c47f4f4008cb445e8eca5da5565fbc5f7bd91
7
+ data.tar.gz: 886d2f87ae0099a2fcffb0af7dc69dadb23dc3feea112b0634d24de317a12bf0372682753d0529b2acd64b6f8647a863df641235779d18c831cae620f7270ff5
@@ -16,7 +16,6 @@ module GitReleaseNotes
16
16
  def logs_messages_between_sha(commit)
17
17
  logs = client.log.between(commit, 'HEAD')
18
18
  logs.map do |c|
19
- puts c.message
20
19
  c.message
21
20
  end
22
21
  end
@@ -21,8 +21,6 @@ module GitReleaseNotes
21
21
  def issue_from_jira_response(issue, response_body)
22
22
  json_issue = JSON.parse(response_body)
23
23
  issue.jira_summary = json_issue.summary
24
- puts "issue_from_jira_response"
25
- puts issue
26
24
  issue
27
25
  end
28
26
 
@@ -38,7 +36,7 @@ module GitReleaseNotes
38
36
  end
39
37
 
40
38
  def basic_auth
41
- pass = ENV['JIRA_API_TOKEN'] || ENV['PASSWORD']
39
+ pass = ENV['JIRA_API_TOKEN'] || ENV['JIRA_PASSWORD']
42
40
 
43
41
  {
44
42
  :username => ENV['JIRA_USERNAME'],
@@ -11,13 +11,9 @@ module GitReleaseNotes
11
11
  issue = IssueEntry.new
12
12
  issue.issue_no = m[:key]
13
13
  issue.git_message = m[:git_message]
14
- puts "Issue"
15
- puts issue
16
14
  issue_fill_from_jira(issue)
17
15
  issue
18
16
  end
19
- puts "Messages"
20
- puts messages
21
17
  messages
22
18
  end
23
19
 
@@ -1,3 +1,3 @@
1
1
  module GitReleaseNotes
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git_release_notes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Filip Jakubowski-Drzrwiecki