repocrawler 0.1.4 → 0.1.5

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
  SHA1:
3
- metadata.gz: 1331e41d280ec79186524e6d38f01f58fdbc0249
4
- data.tar.gz: ee66aefc68ec8a3157491b00953fc7edc230263b
3
+ metadata.gz: accc97cc5f24dd3e17e9a0d49c394407f8458612
4
+ data.tar.gz: d3af1a5dd50f136f9885a78adf9b29636cd2a53c
5
5
  SHA512:
6
- metadata.gz: 75b5e512e87ddfa31ebc807cdb5e4ee3b713e18a95cf6b67d1d9634078286aa969faa99130c274c587241e9ba8e8d8a7ee96a2c327135aa14549648a9dea59cd
7
- data.tar.gz: 556c512291a1a826e49d46dd103b23e51713fa4294140e8ac201fd95e6f68356744d3c3864f8092989b8cc27741b14189bf64ff9f8ae4dbeb7d3cc5bf7bcc36f
6
+ metadata.gz: 7f0ff800bd92bebce55f10a12af43fac490d618d34d6a8ed498303eb6b843d82cb9d354b77c9d6aea4f7cbe879e9390610cd747461f5f8d809f873289e952f17
7
+ data.tar.gz: 7f0c4ce3a741fe18b1122049abca15627dc4a34d810f7fc539053ee21a0a25e0494194973aa9de52b44a6a518766e1d7df5ffb373062857cf10fc02e4cf2670e
@@ -27,7 +27,6 @@ module Repos
27
27
  last_year_commit_activity = HTTParty.get(@GITHUB_API_BASE_URL + "/stats/commit_activity?access_token=#{@access_token}", headers: {
28
28
  "User-Agent" => @user_agent
29
29
  })
30
- puts last_year_commit_activity.headers
31
30
  end
32
31
 
33
32
  # Get the contributors
@@ -41,7 +40,6 @@ module Repos
41
40
  }
42
41
  end
43
42
 
44
- puts contributors.headers
45
43
  contributors
46
44
  end
47
45
 
@@ -62,7 +60,6 @@ module Repos
62
60
  })
63
61
  forks = repos_meta['forks_count']
64
62
 
65
- puts repos_meta.headers
66
63
  forks
67
64
  end
68
65
 
@@ -72,7 +69,6 @@ module Repos
72
69
  })
73
70
  stars = repos_meta['stargazers_count']
74
71
 
75
- puts repos_meta.headers
76
72
  stars
77
73
  end
78
74
 
@@ -82,7 +78,6 @@ module Repos
82
78
  })
83
79
  issues = repos_meta['open_issues_count']
84
80
 
85
- puts repos_meta.headers
86
81
  issues
87
82
  end
88
83
 
@@ -100,7 +95,6 @@ module Repos
100
95
  stop = true
101
96
  end
102
97
 
103
- puts issue_fetch.headers
104
98
 
105
99
  issue_fetch.each do |issue|
106
100
  closed_issues << {
@@ -133,7 +127,6 @@ module Repos
133
127
  "User-Agent" => @user_agent
134
128
  })
135
129
 
136
- puts github_contents.headers
137
130
 
138
131
  readme_file = ''
139
132
  github_contents.each do |content|
@@ -1,4 +1,4 @@
1
1
  # Versioning
2
2
  module Repos
3
- VERSION = '0.1.4'
3
+ VERSION = '0.1.5'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: repocrawler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lee Chen