git-status-all 1.1.2 → 1.1.3
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/.gitignore +0 -0
- data/Gemfile +0 -0
- data/Gemfile.lock +0 -0
- data/LICENSE.txt +0 -0
- data/README.md +0 -0
- data/Rakefile +1 -1
- data/git-status.png +0 -0
- data/git-status_all.gemspec +0 -0
- data/lib/git/status_all.rb +2 -2
- data/lib/git/status_all/extensions.rb +0 -0
- data/lib/git/status_all/git.rb +0 -0
- data/lib/git/status_all/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c1fc7383f5d4a3ac5b3c8d8d5498eb3bc447e10
|
|
4
|
+
data.tar.gz: 2d5bb0f039d70c5b82c7f624844e27f2d2722f58
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb8e373b8b67029154c7bf007222c5ceef3cd923b0154ede4af37fe4a107e5a9f4c708f0d319b998cbb33a740ab8b3caf8b3efc57e71bbfdd7cd3a1e2c9394c2
|
|
7
|
+
data.tar.gz: 6694486f655186235ed8c7a87d18d8a8e76da0925ae9a0409b0168ab8d533b4449e794260f573201147e52ff8e92cf4aeb865b45445a33214d34cc0047de4d50
|
data/.gitignore
CHANGED
|
File without changes
|
data/Gemfile
CHANGED
|
File without changes
|
data/Gemfile.lock
CHANGED
|
File without changes
|
data/LICENSE.txt
CHANGED
|
File without changes
|
data/README.md
CHANGED
|
File without changes
|
data/Rakefile
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
require "bundler/gem_tasks"
|
|
2
|
-
task :default => :
|
|
2
|
+
task :default => :build
|
data/git-status.png
CHANGED
|
File without changes
|
data/git-status_all.gemspec
CHANGED
|
File without changes
|
data/lib/git/status_all.rb
CHANGED
|
@@ -84,8 +84,8 @@ module Git
|
|
|
84
84
|
return "no origin".black.on_yellow
|
|
85
85
|
end
|
|
86
86
|
|
|
87
|
-
if !g.branches
|
|
88
|
-
b = g.branches
|
|
87
|
+
if !g.branches.current.up_to_date?
|
|
88
|
+
b = g.branches.current
|
|
89
89
|
|
|
90
90
|
s = ''
|
|
91
91
|
s += "#{b.behind_count}\u2193" if b.behind_count > 0
|
|
File without changes
|
data/lib/git/status_all/git.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git-status-all
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nathan Reed
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-03-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -124,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
124
124
|
version: '0'
|
|
125
125
|
requirements: []
|
|
126
126
|
rubyforge_project:
|
|
127
|
-
rubygems_version: 2.
|
|
127
|
+
rubygems_version: 2.5.1
|
|
128
128
|
signing_key:
|
|
129
129
|
specification_version: 4
|
|
130
130
|
summary: show the status of all the git repositories in a directory
|