git 1.2.9 → 1.2.9.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of git might be problematic. Click here for more details.

Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/VERSION +1 -1
  4. data/lib/git/config.rb +6 -3
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2f8c43aab9887b1c224856449e057fa497c9d6ed
4
- data.tar.gz: a607710a83056295b99a6eb5f0715109ccb4ea77
3
+ metadata.gz: 6345c26432a4a89a14892294e9626305746cfc43
4
+ data.tar.gz: 1c6fa07d75bcbd5947fd523416c36949b9c65ae8
5
5
  SHA512:
6
- metadata.gz: bcb2bc710c57c674a7f1d49a7c605ae86a76005a7ee55721c745b5fb215ecbc944892d7f3401420cf6af717c3744e730a6af32453d20f0a381f19dd23f67c068
7
- data.tar.gz: e54136f3c5c988e9b4582fc921739de685bc5aa3ea10d2917d60bfe3c278acb8224b59c877426d718410d0a2ef92983d7066f863505f29bc4dfdcc2c15acf253
6
+ metadata.gz: a9d68fd1d7e5644ca79a31ee30cdce423c505178536a875386a41eaf8d42320a98fa738e09956f81e06845de1ccd48176c73c0e7cab3fa96b7fb335f8bf0054f
7
+ data.tar.gz: cd5b1a434f47f1b50da03721f4bbc9d343349e1f0287e342ce62378dc23dee37566ca262475204f1e6c46a2a4f0d373cb07d168119efe1b836c164414fb73c07
data/README.md CHANGED
@@ -64,7 +64,7 @@ Git env config
64
64
  # If you want to use a custom git binary
65
65
  config.binary_path = '/git/bin/path'
66
66
 
67
- # If you need to use a custom SSH Key
67
+ # If you need to use a custom SSH script
68
68
  config.git_ssh = '/path/to/ssh/script'
69
69
  end
70
70
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.9
1
+ 1.2.9.1
@@ -2,18 +2,21 @@ module Git
2
2
 
3
3
  class Config
4
4
 
5
- attr_writer :binary_path
6
-
7
- attr_accessor :git_ssh
5
+ attr_writer :binary_path, :git_ssh
8
6
 
9
7
  def initialize
10
8
  @binary_path = nil
9
+ @git_ssh = nil
11
10
  end
12
11
 
13
12
  def binary_path
14
13
  @binary_path || 'git'
15
14
  end
16
15
 
16
+ def git_ssh
17
+ @git_ssh || ENV['GIT_SSH']
18
+ end
19
+
17
20
  end
18
21
 
19
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.9
4
+ version: 1.2.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Chacon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-12 00:00:00.000000000 Z
11
+ date: 2015-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake