gem-gratitude 0.1.9 → 0.1.10

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/gem-gratitude.rb +6 -2
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2a889ed263b94a73f9a024daf9dcd5dcd0b76062
4
- data.tar.gz: d77db20d647afff5f95800de7887a46277acdcb7
3
+ metadata.gz: b98e25a4daba5a9ea49a02dbb39d2d3ebe295246
4
+ data.tar.gz: 8684a6a0a0a8ea2e20beef0f66b83fb146035be4
5
5
  SHA512:
6
- metadata.gz: b9513fd248f2bd8ad4b8ce4940177a7d1235662ca40e4c2aa2463aea165af375ff3d85207d0c265261bc0f38df5c3ff0739345223675001f3f67b44962d02425
7
- data.tar.gz: 1e5253c4b5bb1e67ff056aca1278105a3e079bee867424a78520d37a77f86999b30cf4ad180280cd442f933d58b61ae7e1c22f2e6d5f1c1967461dfb96bee02d
6
+ metadata.gz: d5658d3008de72b7a2a83f03b2c3fad40bdd702232eeb480babdefe5afb31273c5aff5f7eb258fd5372b8ec31fbed8166455419053eb983be88e110124ed7225
7
+ data.tar.gz: 21d87a4b552b9313511be327039783ac72663d398f07f991ba005a6734a4e9502e4cf18ddaec0a1d0f580312f3a782656f2d8d12e56535e8fc164fc59d3aef25
data/lib/gem-gratitude.rb CHANGED
@@ -57,7 +57,11 @@ class Issue
57
57
  @issue_count = 0
58
58
  @gem_list.each do |g|
59
59
  github_url = g[:homepage].split('/')
60
- response = HTTParty.get("https://api.github.com/repos/#{github_url[-2]}/#{github_url[-1]}/issues?state=open", basic_auth: {username: 'd9eaac28045e8cc35c3f520c7e639caf22b1496e', password: 'x-oauth-basic'})
60
+ response = HTTParty.get(
61
+ "https://api.github.com/repos/#{github_url[-2]}/#{github_url[-1]}/issues?state=open",
62
+ basic_auth: {username: 'd9eaac28045e8cc35c3f520c7e639caf22b1496e', password: 'x-oauth-basic'},
63
+ headers: { 'User-Agent' => "gem-gratitude" }
64
+ )
61
65
  json = JSON.parse(response.body)
62
66
  if response.code == 200
63
67
  puts "#{g[:name]}: #{g[:homepage]} - #{json.count} open issues"
@@ -66,7 +70,7 @@ class Issue
66
70
  @html_content <<
67
71
  "<h3>[#{g[:name]}] #{issue['title']}</h3>"\
68
72
  "<div><a class='github_link' href=\"#{issue['html_url']}\">View on GitHub: #{issue['title']}</a>"\
69
- "#{@markdown.render(issue['body'])}</div>"
73
+ "#{@markdown.render(issue['body'].to_s)}</div>"
70
74
  end
71
75
  end
72
76
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem-gratitude
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Bartlett