git-process 0.9.3 → 0.9.4

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git-process (0.9.3)
4
+ git-process (0.9.4)
5
5
  highline (~> 1.6.12)
6
6
  json (~> 1.7.3)
7
7
  launchy (~> 2.1.0)
@@ -61,7 +61,7 @@ module GitProc
61
61
  def [](branch_name)
62
62
  branch_name = current.name if branch_name == 'HEAD'
63
63
  br = @items.find {|b| b.name == branch_name}
64
- if br.nil? and br.local?
64
+ if br.nil? and branch_name !~ /origin\//
65
65
  @lib.logger.warn {"Could not find '#{branch_name}' in #{@items.map{|i|i.name}.join(',')}"}
66
66
  end
67
67
  br
@@ -14,7 +14,7 @@ module GitProc
14
14
  module Version
15
15
  MAJOR = 0
16
16
  MINOR = 9
17
- PATCH = 3
17
+ PATCH = 4
18
18
  BUILD = nil
19
19
 
20
20
  STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 9
8
- - 3
9
- version: 0.9.3
8
+ - 4
9
+ version: 0.9.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jim Moore