paperclip-azure 0.2.9 → 0.2.10
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/VERSION +1 -1
- data/lib/paperclip/storage/azure.rb +1 -1
- data/paperclip-azure.gemspec +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: 59fe87ef25d784ec5406e51463af390389e0d697
|
|
4
|
+
data.tar.gz: 506207a8890813963a73d9d4383233b48c60067f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41cecfbea60737965bdd0ded0c3da580a411f35b431f6d9744239ff83afa5c25bbd0eab5df358601bffebb43ec37f5af358ead72bc5afc97845a355df8a012f4
|
|
7
|
+
data.tar.gz: 52f3fc45a86357a9bb7ec310f165837dd2bc38170ebb41acab4ae10a999f17265fb65ba680c04c26ab00da6d7616acf0f2a2300c8075c5b582a5dd29fdbc3cb6
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.10
|
|
@@ -143,7 +143,7 @@ module Paperclip
|
|
|
143
143
|
if (status_code >= 300 && status_code < 500 && status_code != 408) ||
|
|
144
144
|
status_code == 501 ||
|
|
145
145
|
status_code == 505 ||
|
|
146
|
-
retry_data[:error].description == 'Blob type of the blob reference doesn\'t match blob type of the blob.' ||
|
|
146
|
+
(!retry_data[:error].nil? && retry_data[:error].description == 'Blob type of the blob reference doesn\'t match blob type of the blob.') ||
|
|
147
147
|
retry_data[:count] >= 5
|
|
148
148
|
retry_data[:count] = 0
|
|
149
149
|
else
|
data/paperclip-azure.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "paperclip-azure"
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.10"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jordan Yaker", "Supportify, Inc."]
|