thegarage-gitx 2.0.0.pre1 → 2.0.0.pre2
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/README.md +1 -1
- data/lib/thegarage/gitx/cli/cleanup_command.rb +8 -7
- data/lib/thegarage/gitx/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: 2140818831754aeb5374e1a356c8f514721eadf6
|
|
4
|
+
data.tar.gz: fc3921cb38d10d175606ebb20329dbc5cee90d1a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b6da009492fa9f1fb13ec9367157359332996b04d830316dbfd737584865e848bc5083fb7b4b7f58328095060481ff7cfcbcc7dae7f8cb925246e9e1230d8b3
|
|
7
|
+
data.tar.gz: 9fcb8b4d11da6ce9db9b94381bf2d88bcdbe9cf31fe3d2fac18548cbd225c235816490337c61c2d704aebdf5c3e50d4132f38435d3263645a86ff252a02264b9
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://travis-ci.org/thegarage/thegarage-gitx)
|
|
4
4
|
[](https://coveralls.io/r/thegarage/thegarage-gitx)
|
|
5
|
-
[](https://codeclimate.com/github/thegarage/thegarage-gitx)
|
|
6
6
|
|
|
7
7
|
Useful Git eXtensions for Development workflow at The Garage.
|
|
8
8
|
|
|
@@ -21,15 +21,16 @@ module Thegarage
|
|
|
21
21
|
run_cmd "git branch -d #{branch}"
|
|
22
22
|
end
|
|
23
23
|
end
|
|
24
|
-
end
|
|
25
24
|
|
|
26
|
-
|
|
27
|
-
def merged_local_branches
|
|
28
|
-
branches(:merged => true).reject { |b| aggregate_branch?(b) }
|
|
29
|
-
end
|
|
25
|
+
private
|
|
30
26
|
|
|
31
|
-
|
|
32
|
-
|
|
27
|
+
def merged_local_branches
|
|
28
|
+
branches(:merged => true).reject { |b| aggregate_branch?(b) }
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
def merged_remote_branches
|
|
32
|
+
branches(:merged => true, :remote => true).reject { |b| aggregate_branch?(b) }
|
|
33
|
+
end
|
|
33
34
|
end
|
|
34
35
|
end
|
|
35
36
|
end
|