git-multi 3.0.0 → 3.0.2

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: 5da7ff698de70c2af01a320fad295f22448bea29
4
- data.tar.gz: '048143afd8461769496a28b01ad9c881a1ad12f1'
3
+ metadata.gz: 1e434825eba85cea365ab186cdcb1c9e22d71659
4
+ data.tar.gz: a755a1adaedcb7814d7da70c1543e5b63926feac
5
5
  SHA512:
6
- metadata.gz: 81be5964026a4de4d6437b3d272556bc84e721e0ff27929d95301faa9c342e733590b4e39a100ea8e17ac617d338455635ccfde51b2671374138eb1567e812a2
7
- data.tar.gz: 1a185a49c8f8fd8360865e73840a87fa3082867969dd5bc2742cc66dd0f8737bd818d0ddea58a50cd77d721895d4fbd884261d4b6654ee4220e7ad3be596b54f
6
+ metadata.gz: 4558c715cd243707a53492613300274aa5e601e90972738f78f07bb6cf317d74c422c3fab03d5288b2ce188d46e5057e282fea7f6931366fdff9b0c539102f60
7
+ data.tar.gz: 3ad1e171f0e8ea5060d1b41dbe55b271eee96def77f11769e9a7a504f65f71331bd6248bf78402a6f2230da9666a124c892d8fd44ed1a5c87e4345ecfab203b3
data/.rubocop.yml CHANGED
@@ -9,14 +9,14 @@ Layout/EmptyLinesAroundClassBody:
9
9
  Enabled: false
10
10
  Layout/EmptyLinesAroundModuleBody:
11
11
  Enabled: false
12
+ Layout/LineLength:
13
+ Enabled: false
12
14
 
13
- Lint/HandleExceptions:
15
+ Lint/SuppressedException:
14
16
  Enabled: false
15
17
 
16
18
  Metrics/AbcSize:
17
19
  Enabled: false
18
- Metrics/LineLength:
19
- Enabled: false
20
20
  Metrics/MethodLength:
21
21
  Enabled: false
22
22
  Metrics/ModuleLength:
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git-multi (2.10.0)
4
+ git-multi (3.0.2)
5
5
  faraday (~> 0.15.0)
6
6
  octokit (~> 4)
7
7
 
@@ -15,15 +15,15 @@ GEM
15
15
  faraday (0.15.4)
16
16
  multipart-post (>= 1.2, < 3)
17
17
  interception (0.5)
18
- jaro_winkler (1.5.3)
18
+ jaro_winkler (1.5.4)
19
19
  method_source (0.9.2)
20
- minitest (5.12.2)
20
+ minitest (5.14.0)
21
21
  multipart-post (2.1.1)
22
22
  octokit (4.15.0)
23
23
  faraday (>= 0.9)
24
24
  sawyer (~> 0.8.0, >= 0.5.3)
25
- parallel (1.17.0)
26
- parser (2.6.4.1)
25
+ parallel (1.19.1)
26
+ parser (2.7.0.2)
27
27
  ast (~> 2.4.0)
28
28
  pry (0.12.2)
29
29
  coderay (~> 1.1.0)
@@ -33,11 +33,11 @@ GEM
33
33
  pry (>= 0.12.0)
34
34
  public_suffix (4.0.3)
35
35
  rainbow (3.0.0)
36
- rake (13.0.0)
37
- rubocop (0.74.0)
36
+ rake (13.0.1)
37
+ rubocop (0.79.0)
38
38
  jaro_winkler (~> 1.5.1)
39
39
  parallel (~> 1.10)
40
- parser (>= 2.6)
40
+ parser (>= 2.7.0.1)
41
41
  rainbow (>= 2.2.2, < 4.0)
42
42
  ruby-progressbar (~> 1.7)
43
43
  unicode-display_width (>= 1.4.0, < 1.7)
@@ -45,7 +45,7 @@ GEM
45
45
  sawyer (0.8.2)
46
46
  addressable (>= 2.3.5)
47
47
  faraday (> 0.8, < 2.0)
48
- unicode-display_width (1.6.0)
48
+ unicode-display_width (1.6.1)
49
49
 
50
50
  PLATFORMS
51
51
  ruby
data/Rakefile CHANGED
@@ -55,7 +55,13 @@ task :documentation => git_asciidoc do
55
55
  end
56
56
  end
57
57
 
58
- Rake::Task['build'].enhance([:default, :documentation])
58
+ task :ready => :documentation do
59
+ sh('bundle --quiet') # regenerate Gemfile.lock e.g. if version has changed
60
+ sh('git update-index --really-refresh') # refresh touched but unchanged docs
61
+ sh('git diff-index --quiet HEAD --') # https://stackoverflow.com/a/2659808
62
+ end
63
+
64
+ Rake::Task['build'].enhance([:default, :ready])
59
65
 
60
66
  # rubocop:enable Style/HashSyntax
61
67
  # rubocop:enable Style/SymbolArray
data/lib/git/hub.rb CHANGED
@@ -64,9 +64,11 @@ module Git
64
64
  end
65
65
 
66
66
  def query_args
67
+ # rubocop:disable Style/FormatStringToken
67
68
  repository_fields.sort.each_slice(3).map { |foo, bar, qux|
68
69
  format('%-20s %-20s %-20s', foo, bar, qux).rstrip
69
70
  }.join("\n ")
71
+ # rubocop:enable Style/FormatStringToken
70
72
  end
71
73
 
72
74
  #
@@ -1,7 +1,7 @@
1
1
  module Git
2
2
  module Multi
3
3
  NAME = 'git-multi'.freeze
4
- VERSION = '3.0.0'.freeze
4
+ VERSION = '3.0.2'.freeze
5
5
 
6
6
  def self.version
7
7
  "#{NAME} v#{VERSION}"
data/man/git-multi.1 CHANGED
@@ -2,12 +2,12 @@
2
2
  .\" Title: git-multi
3
3
  .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4
4
  .\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
5
- .\" Date: 01/13/2020
5
+ .\" Date: 01/25/2020
6
6
  .\" Manual: Git Manual
7
7
  .\" Source: Git 2.23.0.606.g08da6496b6.dirty
8
8
  .\" Language: English
9
9
  .\"
10
- .TH "GIT\-MULTI" "1" "01/13/2020" "Git 2\&.23\&.0\&.606\&.g08da64" "Git Manual"
10
+ .TH "GIT\-MULTI" "1" "01/25/2020" "Git 2\&.23\&.0\&.606\&.g08da64" "Git Manual"
11
11
  .\" -----------------------------------------------------------------
12
12
  .\" * Define some portability stuff
13
13
  .\" -----------------------------------------------------------------
@@ -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 \fBv3\&.0\&.0\fR of \fIgit multi\fR \&... hooray!
34
+ This is \fBv3\&.0\&.2\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>v3.0.0</code> of <em>git multi</em> &#8230; hooray!</p></div>
751
+ <div class="paragraph"><p>This is <code>v3.0.2</code> of <em>git multi</em> &#8230; hooray!</p></div>
752
752
  </div>
753
753
  </div>
754
754
  <div class="sect1">
@@ -1222,7 +1222,7 @@ the <code>jq</code> command-line utility:
1222
1222
  <div id="footer">
1223
1223
  <div id="footer-text">
1224
1224
  Last updated
1225
- 2020-01-13 08:59:40 GMT
1225
+ 2020-01-25 07:05:13 GMT
1226
1226
  </div>
1227
1227
  </div>
1228
1228
  </body>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-multi
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Vandenberk
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-01-13 00:00:00.000000000 Z
11
+ date: 2020-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday