dpl 1.8.7.travis.1149.4 → 1.8.7.travis.1150.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 +8 -8
- data/lib/dpl/provider/bintray.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YTUxOGU0N2VlYmU4YWNiNjFhM2ZjZmZkZjJiNWVmZmM4ZjhkYmNjNg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZTRiYmM5ZmQxYTc0ODc1YzEwZDg4NWNhMGZmMTg3Y2Q4NTdkOGJiOQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZGE2NWM5MjE4YTRmYTkxMmRmMzUzZTdmZTlmZDZmMTZjNGUzN2UzZDAyYjQ0
|
|
10
|
+
NjBjNTEzODNkOGY5NTAzMWQxYWIyMDVkYTEwZTI1NjU0MTM1MzRiODQ5OGFi
|
|
11
|
+
MWQyNWViYjNjNzc3MGJiM2I4OWRmMjI3ZTI5ZmYzMjc2Mzc1YTg=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YTQ4MWU4ZGFlY2Q0MDZhYWM5ZGRhZDA1MjU4NGFkYzU5MmYxOGQ3ZDE3M2Rj
|
|
14
|
+
MTc4MzgwMzdjZGU1NTE4MjI4MjU4OTU1YTNlZjE1OGJkMTI2MTk3NWIyMGU2
|
|
15
|
+
MzRjNWVjMmM3OTgzNmMyYWFhODY4YWNlYjhhN2NlODhhNjIwZGY=
|
data/lib/dpl/provider/bintray.rb
CHANGED
|
@@ -149,6 +149,7 @@ module DPL
|
|
|
149
149
|
if code == 201 || code == 200
|
|
150
150
|
return true
|
|
151
151
|
end
|
|
152
|
+
name = descriptor["package"]["name"]
|
|
152
153
|
abort("Unexpected HTTP response code #{code} returned from Bintray while checking if package '#{name}' exists. " +
|
|
153
154
|
"Response message: #{res.message}")
|
|
154
155
|
end
|
|
@@ -179,6 +180,7 @@ module DPL
|
|
|
179
180
|
if code == 201 || code == 200
|
|
180
181
|
return true
|
|
181
182
|
end
|
|
183
|
+
version_name = descriptor["version"]["name"]
|
|
182
184
|
abort("Unexpected HTTP response code #{code} returned from Bintray while checking if version '#{version_name}' exists. " +
|
|
183
185
|
"Response message: #{res.message}")
|
|
184
186
|
end
|
|
@@ -503,4 +505,4 @@ module DPL
|
|
|
503
505
|
end
|
|
504
506
|
end
|
|
505
507
|
end
|
|
506
|
-
end
|
|
508
|
+
end
|