circleci-bundle-update-pr 1.3.4 → 1.3.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/circleci/bundle/update/pr.rb +3 -1
- data/lib/circleci/bundle/update/pr/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9a3feb5f42b818eadf0b168280ecd1578c6afe99
|
|
4
|
+
data.tar.gz: 11523275b7da1cb19c5123d68cb0d9f833d21356
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f47774bccb5f6d6beb7c9e8266aecbb03398526d9ce69aad8f02b885e99e8566a3305e7ca61ab53e1ceb20bfb0bc1efe86179f0940fbb31981dd6a6882a7a6ac
|
|
7
|
+
data.tar.gz: e93350a299f0217732cd18bde3831b87fd54536a031c5a187bfd7bdffeb8eded50fd88dd1ae6a4db7eea245dd3a77e29b477b926b5363dae404e8e3166d35385
|
data/Gemfile.lock
CHANGED
|
@@ -25,7 +25,9 @@ module Circleci
|
|
|
25
25
|
|
|
26
26
|
def self.need?(git_branches)
|
|
27
27
|
return false unless git_branches.include?(ENV['CIRCLE_BRANCH'])
|
|
28
|
-
system("bundle update")
|
|
28
|
+
unless system("bundle update")
|
|
29
|
+
raise "Unable to execute `bundle update`"
|
|
30
|
+
end
|
|
29
31
|
`git status -sb 2> /dev/null`.include?("Gemfile.lock")
|
|
30
32
|
end
|
|
31
33
|
private_class_method :need?
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: circleci-bundle-update-pr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Takashi Masuda
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: octokit
|