bundler-advise 1.1.3 → 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 30f4e69a4f93c5836696e97544e8394a5c7414b2
4
- data.tar.gz: 4d7e7251ffaada1d00bda7f03190a46d8e824119
3
+ metadata.gz: 992e1d9226e188b36afcb80db7d60cc401fb1b95
4
+ data.tar.gz: f9d00b0881c042fd4096d82b5d3f3736aa3daebf
5
5
  SHA512:
6
- metadata.gz: 58c066c34fa833a22d5743dbdd7e9788a24eae1225db17fa2e64cbb1ea00b041b93b92c4866e31d0c72e2fcfefe8707700446c622572d3e3ed606ec79a940a1f
7
- data.tar.gz: 27df41527ceb684d2993bc2bbe3aa87289dfcb154afc9183ab4d9cd65ee4958b4bf3b0cbbdd380d6a851412d9ccaa791d2afb2f86af3e1f8987e75a70d1c3cac
6
+ metadata.gz: 7be0c956c5fcbb9cfdca30ef38e5db16ab784008976cdda9943b62d381b72cec08656f9ae8831a10d470df927c622bd5715ec565e181dcc751357a9eb413e26a
7
+ data.tar.gz: 14e622f2c351cd30fc4fa257c42b0661c8d8070f38094f3d99c39abc96e75352ad5634efa2767ce8aa0b60be3c481d1fd7862622781535d636d60ae2d4a807bb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bundler-advise (1.1.3)
4
+ bundler-advise (1.1.4)
5
5
  bundler (~> 1.7)
6
6
  git
7
7
 
@@ -41,8 +41,13 @@ module Bundler::Advise
41
41
  end
42
42
 
43
43
  def pull
44
- git = Git.open(@dir)
45
- git.pull
44
+ # git gem uses --git-dir and --work-tree so this SHOULD work when OS working dir
45
+ # doesn't match - but that's not always true, so let's ensure this works on all
46
+ # CI boxen out there.
47
+ Dir.chdir(@dir) do
48
+ git = Git.open(@dir)
49
+ git.pull
50
+ end
46
51
  end
47
52
  end
48
53
  end
@@ -1,5 +1,5 @@
1
1
  module Bundler
2
2
  module Advise
3
- VERSION = '1.1.3'
3
+ VERSION = '1.1.4'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler-advise
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - chrismo