bundler-advise 1.1.3 → 1.1.4
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/Gemfile.lock +1 -1
- data/lib/bundler/advise/advisories.rb +7 -2
- data/lib/bundler/advise/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: 992e1d9226e188b36afcb80db7d60cc401fb1b95
|
|
4
|
+
data.tar.gz: f9d00b0881c042fd4096d82b5d3f3736aa3daebf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7be0c956c5fcbb9cfdca30ef38e5db16ab784008976cdda9943b62d381b72cec08656f9ae8831a10d470df927c622bd5715ec565e181dcc751357a9eb413e26a
|
|
7
|
+
data.tar.gz: 14e622f2c351cd30fc4fa257c42b0661c8d8070f38094f3d99c39abc96e75352ad5634efa2767ce8aa0b60be3c481d1fd7862622781535d636d60ae2d4a807bb
|
data/Gemfile.lock
CHANGED
|
@@ -41,8 +41,13 @@ module Bundler::Advise
|
|
|
41
41
|
end
|
|
42
42
|
|
|
43
43
|
def pull
|
|
44
|
-
git
|
|
45
|
-
|
|
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
|