git-amnesia 0.0.2 → 0.0.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 +5 -5
- data/lib/git-amnesia/git.rb +1 -1
- data/lib/git-amnesia/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: edfb78a8d105505587e970a331b516f1e75e330ff5692b980e8faa90fcba8dac
|
4
|
+
data.tar.gz: 18ca9909765cb010a58f785db3d98913572e4b73a3afd8f8405793e415eabc20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e59615bb9b9794742693c69d45920efe66c0e1d8f5d4ac68ba36718abbaad3738807bb6371f4a364e6271193dadbf6ea7485702f97837a1e0e0a4b3c827834fa
|
7
|
+
data.tar.gz: 6c066d66fbaa36149a358d11da34c7fd19fc4726c67995cfa5babb4a4bb737304527e59894faef33806f88dc02b00201c6c1b1488cf032c5ea4825f5ee60a15b
|
data/lib/git-amnesia/git.rb
CHANGED
@@ -40,7 +40,7 @@ class Git
|
|
40
40
|
repos.each do |repo|
|
41
41
|
cmd = "cd '#{repo}' 2>/dev/null" +
|
42
42
|
" && git log --max-count=#{Git.amnesia_max} --author='#{Git.author_name}'" +
|
43
|
-
" --pretty=format:'%at::#{repo.basename}::%s' 2>/dev/null"
|
43
|
+
" --all --pretty=format:'%at::#{repo.basename}::%s' 2>/dev/null"
|
44
44
|
log = `#{cmd}`
|
45
45
|
if $?.exitstatus == 0
|
46
46
|
logs += log.explode.map { |l| Log.new(l) }
|
data/lib/git-amnesia/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-amnesia
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Armin Grodon
|
@@ -61,8 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
61
|
version: '0'
|
62
62
|
requirements:
|
63
63
|
- git
|
64
|
-
|
65
|
-
rubygems_version: 2.5.1
|
64
|
+
rubygems_version: 3.0.1
|
66
65
|
signing_key:
|
67
66
|
specification_version: 4
|
68
67
|
summary: A tool to help you recover from your post-weekend amnesia
|