files.com 1.1.323 → 1.1.324
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/README.md +1 -1
- data/_VERSION +1 -1
- data/lib/files.com/errors.rb +1 -1
- data/lib/files.com/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9215c45f344aebd0f617764e1c876e6d88b2bbb4b8e8a80a427f07b7f71b63ba
|
4
|
+
data.tar.gz: 48e6ffc3ac30107e9816e8da77cb60c9b31ae45cd79f179d38da60d7b7eee99e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d397493ad0f9c51c6b2b7e561f3dee653b12261cc82bd1c1a30d09ce4c6eb9502002959576d2bbf86a22855461c78cb62f9a488308d1e2a20be8e951d50e2e8
|
7
|
+
data.tar.gz: 71f3a13834e00f3285a681b4e5415b25883ba50088dc02b8062639a259734379f7398948fb3b7e22c0b1b8e7ea306b3c2e771d9bcca2ec0816ccd394ed79570d
|
data/README.md
CHANGED
@@ -613,7 +613,7 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
|
|
613
613
|
|`InvalidPriorityColorError`| `ProcessingFailureError` |
|
614
614
|
|`InvalidRangeError`| `ProcessingFailureError` |
|
615
615
|
|`InvalidSiteError`| `ProcessingFailureError` |
|
616
|
-
|`
|
616
|
+
|`MetadataNotSupportedOnRemotesError`| `ProcessingFailureError` |
|
617
617
|
|`ModelSaveErrorError`| `ProcessingFailureError` |
|
618
618
|
|`MultipleProcessingErrorsError`| `ProcessingFailureError` |
|
619
619
|
|`PathTooLongError`| `ProcessingFailureError` |
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.324
|
data/lib/files.com/errors.rb
CHANGED
@@ -203,7 +203,7 @@ module Files
|
|
203
203
|
class InvalidPriorityColorError < ProcessingFailureError; end
|
204
204
|
class InvalidRangeError < ProcessingFailureError; end
|
205
205
|
class InvalidSiteError < ProcessingFailureError; end
|
206
|
-
class
|
206
|
+
class MetadataNotSupportedOnRemotesError < ProcessingFailureError; end
|
207
207
|
class ModelSaveErrorError < ProcessingFailureError; end
|
208
208
|
class MultipleProcessingErrorsError < ProcessingFailureError; end
|
209
209
|
class PathTooLongError < ProcessingFailureError; end
|
data/lib/files.com/version.rb
CHANGED