git-multi 1.0.8 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 93cde3e72f341136423fa1e1990e92ace46e948dfd8d6d2d4e6c13bce943b830
4
- data.tar.gz: a17ad46a34d50b4cdd16e00fc51af79d4c5f1052ee510f1d34062e79807093cd
3
+ metadata.gz: d9f18b7401f3d302bf0de32a7af25b1d8e4f6c3d9afb937ef2282434e5ead56b
4
+ data.tar.gz: '09a6dfc7de48a4a0eb5d47c2aee5f1f33cffbc895663fa4c2a2a775e46dd527d'
5
5
  SHA512:
6
- metadata.gz: f0b71c4cb69ebcfc962a9ac7874395fad25b5f311dcd9ae8698f777dec0c13608d7a596e777bfb95a39addd2329dfa67bbda2a6f7a18538084febe798b0dcf2e
7
- data.tar.gz: cb5190bef249a60e01b1acbf40adb97e5fad1f04f36250c12cad5d968588b27cf1d0b01a4416d9b68cf4fa021499e9a53568b3e9097915f8333a372bf43c1b4e
6
+ metadata.gz: 022bb068ad9d6241b0c066939469ee0cd97c0c590d3990dae0cddc460003d413a3c6120502aefde7c7ed46debd1ddc1d1d90e8a742f8f86b136f2bf11ca4d570
7
+ data.tar.gz: a23b9afae4768afddbc9706f84bca703031d9348d3fa2e52e0d7bff32e51f1ebc4e7acab75ecfda9e3c545645117cb04b534d799c59a1155ebdc52c2b56abeab
@@ -70,10 +70,11 @@ module Git
70
70
 
71
71
  def count
72
72
  # https://developer.github.com/v3/repos/#list-user-repositories
73
- user = Git::Multi::USER
74
- %w[all owner member].each { |type|
75
- puts ["#{user}/#{type}", Git::Hub.user_repositories(user, type).count].join("\t")
76
- }
73
+ Git::Multi::USERS.each do |user|
74
+ %w[all owner member].each { |type|
75
+ puts ["#{user}/#{type}", Git::Hub.user_repositories(user, type).count].join("\t")
76
+ }
77
+ end
77
78
  # https://developer.github.com/v3/repos/#list-organization-repositories
78
79
  Git::Multi::ORGANIZATIONS.each do |org|
79
80
  %w[all public private forks sources member].each { |type|
@@ -6,7 +6,7 @@ require 'addressable'
6
6
  module Git
7
7
  module Multi
8
8
  NAME = 'git-multi'.freeze
9
- VERSION = '1.0.8'.freeze
9
+ VERSION = '1.0.9'.freeze
10
10
 
11
11
  DEPENDENCY_VERSIONS = [
12
12
  "octokit.rb v#{Octokit::VERSION}",
data/man/git-multi.1 CHANGED
@@ -31,7 +31,7 @@
31
31
  git-multi \- execute the same git command in multiple repositories
32
32
  .SH "VERSION"
33
33
  .sp
34
- This is \fBv1\&.0\&.8\fR of \fIgit multi\fR \&... hooray!
34
+ This is \fBv1\&.0\&.9\fR of \fIgit multi\fR \&... hooray!
35
35
  .SH "SYNOPSIS"
36
36
  .sp
37
37
  There are some options for \fBgit multi\fR itself, in which case it is invoked as follows:
data/man/git-multi.html CHANGED
@@ -748,7 +748,7 @@ git-multi(1) Manual Page
748
748
  <div class="sect1">
749
749
  <h2 id="_version">VERSION</h2>
750
750
  <div class="sectionbody">
751
- <div class="paragraph"><p>This is <code>v1.0.8</code> of <em>git multi</em> &#8230; hooray!</p></div>
751
+ <div class="paragraph"><p>This is <code>v1.0.9</code> of <em>git multi</em> &#8230; hooray!</p></div>
752
752
  </div>
753
753
  </div>
754
754
  <div class="sect1">
@@ -1179,7 +1179,7 @@ the <code>jq</code> command-line utility:
1179
1179
  <div id="footer">
1180
1180
  <div id="footer-text">
1181
1181
  Last updated
1182
- 2018-10-08 19:41:38 BST
1182
+ 2018-10-08 19:59:55 BST
1183
1183
  </div>
1184
1184
  </div>
1185
1185
  </body>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-multi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.8
4
+ version: 1.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Vandenberk