branches 1.0.2 → 1.1.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 +4 -4
- data/bin/branches +1 -1
- data/lib/branches.rb +1 -1
- data/lib/branches/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0da5c0833785330dc1975c9e786391cd7e93fb3a
|
|
4
|
+
data.tar.gz: 79eab8fdb36512f6c19538c68735587b7f78c678
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 704ed113d908fc389fa69019775f29d47584796934309d451d8876b618eefaa5773aac66c89cbd951436efde036a355119b5d1359e95d9896f0ad1c29020f9fe
|
|
7
|
+
data.tar.gz: f05e72437e5a4640f9f713da261999f15c99b32af268d3e52aa3316d542ff4fb55fdeff0c984081b0a21a13e55f2f6190d08856e74753affbf784b840bedd5f6
|
data/bin/branches
CHANGED
data/lib/branches.rb
CHANGED
|
@@ -3,7 +3,7 @@ require "branches/version"
|
|
|
3
3
|
module Branches
|
|
4
4
|
class Commands
|
|
5
5
|
def show_branches_by_date
|
|
6
|
-
|
|
6
|
+
%x[git for-each-ref --sort=-committerdate refs/heads/ --format='%(committerdate:short) %(refname:short)']
|
|
7
7
|
end
|
|
8
8
|
end
|
|
9
9
|
end
|
data/lib/branches/version.rb
CHANGED