files.com 1.0.238 → 1.0.239
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/docs/file.md +2 -2
- data/docs/folder.md +2 -2
- data/lib/files.com/models/file.rb +1 -1
- data/lib/files.com/models/folder.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 03e2cf02e3002d6cd78ea0276f4bd9791d1ca5c331f5d9e65a9c904bd3045c68
|
|
4
|
+
data.tar.gz: 8cc1e2b209454f7ce3da071c2510130adda84e28a6762bf575f496f809d6b576
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 12a7cb6714cce1878be90e5a6047a0eb30240d2ec720aae6de6c5188a21ff8051629c41158ddb2d8794f20b6341b644826ed4065e2424bcab069649c58ad3e0c
|
|
7
|
+
data.tar.gz: 26a6d166c9636017be8be6d1de23a1313a86ac3cd80932a95c7bfb9be33a6b17c7a214230ff5319097cc01940a09598802f0eab224bdfdd6c674c1f793f89938
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.239
|
data/docs/file.md
CHANGED
|
@@ -17,7 +17,7 @@ may places where a Ruby File object can be used.
|
|
|
17
17
|
"md5": "17c54824e9931a4688ca032d03f6663c",
|
|
18
18
|
"mime_type": "application/octet-stream",
|
|
19
19
|
"region": "us-east-1",
|
|
20
|
-
"permissions": "
|
|
20
|
+
"permissions": "rwd",
|
|
21
21
|
"subfolders_locked?": true,
|
|
22
22
|
"download_uri": "https://mysite.files.com/...",
|
|
23
23
|
"priority_color": "red",
|
|
@@ -42,7 +42,7 @@ may places where a Ruby File object can be used.
|
|
|
42
42
|
* `md5` (string): File MD5 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
|
|
43
43
|
* `mime_type` (string): MIME Type. This is determined by the filename extension and is not stored separately internally.
|
|
44
44
|
* `region` (string): Region location
|
|
45
|
-
* `permissions` (string): A short string representing the current user's permissions. Can be `r`,`w`,`
|
|
45
|
+
* `permissions` (string): A short string representing the current user's permissions. Can be `r`,`w`,`d`, `l` or any combination
|
|
46
46
|
* `subfolders_locked?` (boolean): Are subfolders locked and unable to be modified?
|
|
47
47
|
* `download_uri` (string): Link to download file. Provided only in response to a download request.
|
|
48
48
|
* `priority_color` (string): Bookmark/priority color of file/folder
|
data/docs/folder.md
CHANGED
|
@@ -19,7 +19,7 @@ Files::Dir is an alias of Files::Folder
|
|
|
19
19
|
"md5": "17c54824e9931a4688ca032d03f6663c",
|
|
20
20
|
"mime_type": "application/octet-stream",
|
|
21
21
|
"region": "us-east-1",
|
|
22
|
-
"permissions": "
|
|
22
|
+
"permissions": "rwd",
|
|
23
23
|
"subfolders_locked?": true,
|
|
24
24
|
"download_uri": "https://mysite.files.com/...",
|
|
25
25
|
"priority_color": "red",
|
|
@@ -44,7 +44,7 @@ Files::Dir is an alias of Files::Folder
|
|
|
44
44
|
* `md5` (string): File MD5 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
|
|
45
45
|
* `mime_type` (string): MIME Type. This is determined by the filename extension and is not stored separately internally.
|
|
46
46
|
* `region` (string): Region location
|
|
47
|
-
* `permissions` (string): A short string representing the current user's permissions. Can be `r`,`w`,`
|
|
47
|
+
* `permissions` (string): A short string representing the current user's permissions. Can be `r`,`w`,`d`, `l` or any combination
|
|
48
48
|
* `subfolders_locked?` (boolean): Are subfolders locked and unable to be modified?
|
|
49
49
|
* `download_uri` (string): Link to download file. Provided only in response to a download request.
|
|
50
50
|
* `priority_color` (string): Bookmark/priority color of file/folder
|
|
@@ -682,7 +682,7 @@ module Files
|
|
|
682
682
|
@attributes[:region] = value
|
|
683
683
|
end
|
|
684
684
|
|
|
685
|
-
# string - A short string representing the current user's permissions. Can be `r`,`w`,`
|
|
685
|
+
# string - A short string representing the current user's permissions. Can be `r`,`w`,`d`, `l` or any combination
|
|
686
686
|
def permissions
|
|
687
687
|
@attributes[:permissions]
|
|
688
688
|
end
|
|
@@ -240,7 +240,7 @@ module Files
|
|
|
240
240
|
@attributes[:region] = value
|
|
241
241
|
end
|
|
242
242
|
|
|
243
|
-
# string - A short string representing the current user's permissions. Can be `r`,`w`,`
|
|
243
|
+
# string - A short string representing the current user's permissions. Can be `r`,`w`,`d`, `l` or any combination
|
|
244
244
|
def permissions
|
|
245
245
|
@attributes[:permissions]
|
|
246
246
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: files.com
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.239
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- files.com
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-02-
|
|
11
|
+
date: 2022-02-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|