git_pr 0.0.14.beta6 → 0.0.14.beta7
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 +4 -4
- data/bin/git-pr +3 -4
- data/lib/git_pr/merge.rb +0 -2
- data/lib/git_pr/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 18fcd85b70d8be8c70267ae34885e8cd998fdb25
|
|
4
|
+
data.tar.gz: 60d821b882be970e51732211f6ebf366ce08f8fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64b119ee99ab4274c7292708154fc883e50d616c5ca1e5cfd2dbbc254185c7f09ffed557cd01439de1218b0aa19756912a99c947462500268b304bdf2ef1e587
|
|
7
|
+
data.tar.gz: 40323f1b507ba46eee3bb3104191f8a6c383dea165f89b610619840a42d3b76e40d7c11f888e39359da86eba5fb73b21c69ad5ff84656f6c8a0873965daba4f9
|
data/bin/git-pr
CHANGED
|
@@ -376,10 +376,9 @@ when "status"
|
|
|
376
376
|
|
|
377
377
|
max_context = pull.statuses.map { |s| s.context.length }.max
|
|
378
378
|
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
EOS
|
|
379
|
+
# puts <<EOS
|
|
380
|
+
# #{" " * (max_context + 5)}(cmd-double-click to open links)
|
|
381
|
+
# EOS
|
|
383
382
|
pull.statuses.each do |status|
|
|
384
383
|
puts "#{GitPr::PullRequest.summary_icon(status.state)} #{status.context.ljust(max_context)} #{status.target_url}"
|
|
385
384
|
end
|
data/lib/git_pr/merge.rb
CHANGED
|
@@ -26,7 +26,6 @@ module GitPr
|
|
|
26
26
|
#{"ERROR".red}: One or more status checks have failed on this pull request!
|
|
27
27
|
You should fix these before merging.
|
|
28
28
|
|
|
29
|
-
#{" " * (max_context + 5)}(cmd-double-click to open links)
|
|
30
29
|
EOS
|
|
31
30
|
failed_statuses.each do |status|
|
|
32
31
|
puts "#{GitPr::PullRequest.summary_icon(status.state)} #{status.context.ljust(max_context)} #{status.target_url}"
|
|
@@ -47,7 +46,6 @@ EOS
|
|
|
47
46
|
#{"WARNING".yellow}: One or more status checks is in progress on this pull request.
|
|
48
47
|
You should let them finish.
|
|
49
48
|
|
|
50
|
-
#{" " * (max_context + 5)}(cmd-double-click to open links)
|
|
51
49
|
EOS
|
|
52
50
|
pending_statuses.each do |status|
|
|
53
51
|
puts "#{GitPr::PullRequest.summary_icon(status.state)} #{status.context.ljust(max_context)} #{status.target_url}"
|
data/lib/git_pr/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git_pr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.14.
|
|
4
|
+
version: 0.0.14.beta7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Sharon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-11-
|
|
11
|
+
date: 2015-11-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colorize
|