git-multi 2.1.0 → 2.2.0
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 +5 -5
- data/.pryrc +1 -1
- data/.rubocop.yml +5 -1
- data/LICENSE.txt +1 -1
- data/exe/git-multi +1 -1
- data/git-multi.gemspec +1 -0
- data/lib/git/hub.rb +14 -16
- data/lib/git/multi/commands.rb +16 -12
- data/lib/git/multi/config.rb +1 -1
- data/lib/git/multi/version.rb +1 -1
- data/man/git-multi.1 +1 -1
- data/man/git-multi.html +2 -2
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c94b94babdacd0fd6a8a8c6c6c64c4d61dfe48fb
|
4
|
+
data.tar.gz: a9950a275c9ab1925c8276a7c5bb73ac41e28f6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f0ce4a1f02fa57cee715f6f33f7d367045f2fe0493133f46fa62bdef7698f2abc11f11a0c0b49f7712aa8ef17d2a80bb8011be0cfcd3a6ec04ba3f6e3b1f3ba
|
7
|
+
data.tar.gz: 86d32baff6d2b86528d6db715981838728c89f89eab192715b23ca8a7b9d8749d2a7f8b2d9cd675de3af37fe522e82c1b6a238fffcdd97b4ddb4625372aef5d5
|
data/.pryrc
CHANGED
data/.rubocop.yml
CHANGED
@@ -25,9 +25,13 @@ Style/Lambda:
|
|
25
25
|
Enabled: false
|
26
26
|
Style/NestedTernaryOperator:
|
27
27
|
Enabled: false
|
28
|
+
Style/RedundantBegin:
|
29
|
+
Enabled: false
|
28
30
|
Style/SingleLineMethods:
|
29
31
|
Enabled: false
|
30
32
|
Style/TrailingCommaInArguments:
|
31
33
|
Enabled: false
|
32
|
-
Style/
|
34
|
+
Style/TrailingCommaInArrayLiteral:
|
35
|
+
Enabled: false
|
36
|
+
Style/TrailingCommaInHashLiteral:
|
33
37
|
Enabled: false
|
data/LICENSE.txt
CHANGED
data/exe/git-multi
CHANGED
data/git-multi.gemspec
CHANGED
data/lib/git/hub.rb
CHANGED
@@ -26,37 +26,35 @@ module Git
|
|
26
26
|
)
|
27
27
|
end
|
28
28
|
|
29
|
-
|
30
|
-
private :client
|
31
|
-
end
|
29
|
+
private_class_method :client
|
32
30
|
|
33
31
|
def connected?
|
34
32
|
@connected ||= begin
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
33
|
+
client.validate_credentials
|
34
|
+
true
|
35
|
+
rescue Faraday::ConnectionFailed
|
36
|
+
false
|
37
|
+
end
|
40
38
|
end
|
41
39
|
|
42
40
|
# FIXME: update login as part of `--refresh`
|
43
41
|
|
44
42
|
def login
|
45
43
|
@login ||= begin
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
44
|
+
client.user.login
|
45
|
+
rescue Octokit::Unauthorized, Faraday::ConnectionFailed
|
46
|
+
nil
|
47
|
+
end
|
50
48
|
end
|
51
49
|
|
52
50
|
# FIXME: update orgs as part of `--refresh`
|
53
51
|
|
54
52
|
def orgs
|
55
53
|
@orgs ||= begin
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
54
|
+
client.organizations.map(&:login)
|
55
|
+
rescue Octokit::Unauthorized, Faraday::ConnectionFailed
|
56
|
+
[]
|
57
|
+
end
|
60
58
|
end
|
61
59
|
|
62
60
|
# pick a (semi-)random repo from GitHub
|
data/lib/git/multi/commands.rb
CHANGED
@@ -122,15 +122,17 @@ module Git
|
|
122
122
|
def find(commands, multi_repo = nil)
|
123
123
|
Git::Multi.cloned_repositories_for(multi_repo).each do |repository|
|
124
124
|
Dir.chdir(repository.local_path) do
|
125
|
-
|
126
|
-
repo.
|
127
|
-
|
128
|
-
|
129
|
-
|
125
|
+
begin
|
126
|
+
if repo.instance_eval(commands.join(' && '))
|
127
|
+
repo.just_do_it(
|
128
|
+
->(_repo) { nil },
|
129
|
+
->(repo) { puts repo.full_name },
|
130
|
+
)
|
131
|
+
end
|
132
|
+
rescue Octokit::NotFound
|
133
|
+
# repository no longer exists on GitHub
|
134
|
+
# consider running "git multi --stale"!
|
130
135
|
end
|
131
|
-
rescue Octokit::NotFound
|
132
|
-
# repository no longer exists on GitHub
|
133
|
-
# consider running "git multi --stale"!
|
134
136
|
end
|
135
137
|
end
|
136
138
|
end
|
@@ -138,10 +140,12 @@ module Git
|
|
138
140
|
def eval(commands, multi_repo)
|
139
141
|
Git::Multi.cloned_repositories_for(multi_repo).each do |repo|
|
140
142
|
Dir.chdir(repo.local_path) do
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
143
|
+
begin
|
144
|
+
repo.instance_eval(commands.join(' ; '))
|
145
|
+
rescue Octokit::NotFound
|
146
|
+
# repository no longer exists on GitHub
|
147
|
+
# consider running "git multi --stale"!
|
148
|
+
end
|
145
149
|
end
|
146
150
|
end
|
147
151
|
end
|
data/lib/git/multi/config.rb
CHANGED
data/lib/git/multi/version.rb
CHANGED
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 \fBv2\&.
|
34
|
+
This is \fBv2\&.2\&.0\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>v2.
|
751
|
+
<div class="paragraph"><p>This is <code>v2.2.0</code> of <em>git multi</em> … hooray!</p></div>
|
752
752
|
</div>
|
753
753
|
</div>
|
754
754
|
<div class="sect1">
|
@@ -1209,7 +1209,7 @@ the <code>jq</code> command-line utility:
|
|
1209
1209
|
<div id="footer">
|
1210
1210
|
<div id="footer-text">
|
1211
1211
|
Last updated
|
1212
|
-
2018-11-12
|
1212
|
+
2018-11-12 21:37:52 GMT
|
1213
1213
|
</div>
|
1214
1214
|
</div>
|
1215
1215
|
</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: 2.
|
4
|
+
version: 2.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Vandenberk
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubocop
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
69
83
|
description: Run the same git command in a set of related repos
|
70
84
|
email:
|
71
85
|
- pvandenberk@mac.com
|
@@ -131,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
131
145
|
version: '0'
|
132
146
|
requirements: []
|
133
147
|
rubyforge_project:
|
134
|
-
rubygems_version: 2.
|
148
|
+
rubygems_version: 2.5.2.3
|
135
149
|
signing_key:
|
136
150
|
specification_version: 4
|
137
151
|
summary: The ultimate multi-repo utility for git!
|