github_branch_list 0.6.1 → 0.6.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/bin/github_branch_list +2 -1
- metadata +40 -18
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.2
|
data/bin/github_branch_list
CHANGED
@@ -95,9 +95,9 @@ def diff_branches br1, br2, options
|
|
95
95
|
end
|
96
96
|
|
97
97
|
def diff_all_branhces_with_master options
|
98
|
-
`git fetch origin`
|
99
98
|
|
100
99
|
if options[:just_remote_branches]
|
100
|
+
`git fetch origin`
|
101
101
|
title_block "REMOTE BRANCHES"
|
102
102
|
branches = remote_branches(true)
|
103
103
|
branches.each do |br|
|
@@ -106,6 +106,7 @@ def diff_all_branhces_with_master options
|
|
106
106
|
end
|
107
107
|
|
108
108
|
if options[:just_local_branches]
|
109
|
+
`git fetch origin`
|
109
110
|
options[:remote] = false
|
110
111
|
title_block "LOCAL BRANCHES"
|
111
112
|
branches = remote_branches(false)
|
metadata
CHANGED
@@ -1,8 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github_branch_list
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 3
|
4
5
|
prerelease:
|
5
|
-
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 6
|
9
|
+
- 2
|
10
|
+
version: 0.6.2
|
6
11
|
platform: ruby
|
7
12
|
authors:
|
8
13
|
- Caccinolo Benoit
|
@@ -10,53 +15,68 @@ autorequire:
|
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
17
|
|
13
|
-
date: 2011-08-
|
14
|
-
default_executable: github_branch_list
|
18
|
+
date: 2011-08-10 00:00:00 Z
|
15
19
|
dependencies:
|
16
20
|
- !ruby/object:Gem::Dependency
|
21
|
+
prerelease: false
|
17
22
|
name: shoulda
|
18
|
-
|
23
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
19
24
|
none: false
|
20
25
|
requirements:
|
21
26
|
- - ">="
|
22
27
|
- !ruby/object:Gem::Version
|
28
|
+
hash: 3
|
29
|
+
segments:
|
30
|
+
- 0
|
23
31
|
version: "0"
|
24
32
|
type: :development
|
25
|
-
|
26
|
-
version_requirements: *id001
|
33
|
+
requirement: *id001
|
27
34
|
- !ruby/object:Gem::Dependency
|
35
|
+
prerelease: false
|
28
36
|
name: bundler
|
29
|
-
|
37
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
30
38
|
none: false
|
31
39
|
requirements:
|
32
40
|
- - ~>
|
33
41
|
- !ruby/object:Gem::Version
|
42
|
+
hash: 23
|
43
|
+
segments:
|
44
|
+
- 1
|
45
|
+
- 0
|
46
|
+
- 0
|
34
47
|
version: 1.0.0
|
35
48
|
type: :development
|
36
|
-
|
37
|
-
version_requirements: *id002
|
49
|
+
requirement: *id002
|
38
50
|
- !ruby/object:Gem::Dependency
|
51
|
+
prerelease: false
|
39
52
|
name: jeweler
|
40
|
-
|
53
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
41
54
|
none: false
|
42
55
|
requirements:
|
43
56
|
- - ~>
|
44
57
|
- !ruby/object:Gem::Version
|
58
|
+
hash: 7
|
59
|
+
segments:
|
60
|
+
- 1
|
61
|
+
- 5
|
62
|
+
- 2
|
45
63
|
version: 1.5.2
|
46
64
|
type: :development
|
47
|
-
|
48
|
-
version_requirements: *id003
|
65
|
+
requirement: *id003
|
49
66
|
- !ruby/object:Gem::Dependency
|
67
|
+
prerelease: false
|
50
68
|
name: rcov
|
51
|
-
|
69
|
+
version_requirements: &id004 !ruby/object:Gem::Requirement
|
52
70
|
none: false
|
53
71
|
requirements:
|
54
72
|
- - ">="
|
55
73
|
- !ruby/object:Gem::Version
|
74
|
+
hash: 3
|
75
|
+
segments:
|
76
|
+
- 0
|
56
77
|
version: "0"
|
57
78
|
type: :development
|
58
|
-
|
59
|
-
version_requirements: *id004
|
79
|
+
requirement: *id004
|
60
80
|
description: a gem to have the same output as the github branch list page
|
61
81
|
email: benoit.caccinolo@gmail.com
|
62
82
|
executables:
|
@@ -80,7 +100,6 @@ files:
|
|
80
100
|
- lib/github_branch_list.rb
|
81
101
|
- test/helper.rb
|
82
102
|
- test/test_github_branch_list.rb
|
83
|
-
has_rdoc: true
|
84
103
|
homepage: http://github.com/bcaccinolo/github_branch_list
|
85
104
|
licenses:
|
86
105
|
- MIT
|
@@ -94,7 +113,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
94
113
|
requirements:
|
95
114
|
- - ">="
|
96
115
|
- !ruby/object:Gem::Version
|
97
|
-
hash:
|
116
|
+
hash: 3
|
98
117
|
segments:
|
99
118
|
- 0
|
100
119
|
version: "0"
|
@@ -103,11 +122,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
122
|
requirements:
|
104
123
|
- - ">="
|
105
124
|
- !ruby/object:Gem::Version
|
125
|
+
hash: 3
|
126
|
+
segments:
|
127
|
+
- 0
|
106
128
|
version: "0"
|
107
129
|
requirements: []
|
108
130
|
|
109
131
|
rubyforge_project:
|
110
|
-
rubygems_version: 1.6
|
132
|
+
rubygems_version: 1.8.6
|
111
133
|
signing_key:
|
112
134
|
specification_version: 3
|
113
135
|
summary: a gem to have the same output as the github branch list page
|