travisci-bundle-update-pr 0.0.4 → 0.0.5
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/travisci/bundle/update/pr.rb +1 -1
- data/lib/travisci/bundle/update/pr/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: 785c68164580aafc95f9d6155ff8f03d86ac55dd
|
4
|
+
data.tar.gz: dca903d0d72e2161047cc4318b4111d4349008f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6048758b8a3c6a6ac7b40ba6079a45331fbd24d297819b385415f31ae659ba1d61bc538931744b8da9b729bbb8ff3b31e4f151daf647517a82586062449c78c2
|
7
|
+
data.tar.gz: 49d73b697b52155f2f8c513f431fb9800a84be89bebdc7bc1e23ffd4e53fee60e64373a6cbafd3b5364ef1da9fd72759ae3f6ac9b1104552e7ae306c575a083f
|
data/Gemfile.lock
CHANGED
@@ -12,7 +12,7 @@ module Travisci
|
|
12
12
|
unless system("bundle update && bundle update --ruby")
|
13
13
|
raise "Unable to execute `bundle update && bundle update --ruby`"
|
14
14
|
end
|
15
|
-
unless
|
15
|
+
unless system("git status -s 2> /dev/null").include?('Gemfile.lock')
|
16
16
|
return
|
17
17
|
end
|
18
18
|
|