files.com 1.1.133 → 1.1.134

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a224336961aed7b8737c80b817572cf7aaf7c4091faafdf0d1eaaedf1f249ba7
4
- data.tar.gz: 29ed2a93f3ef68c13b9a48ac3ed9bd99542bed6a665b8cc4762bfa72c104438a
3
+ metadata.gz: '019143d70ade40e5a242798d14c869726438d9446789145cb825993cca90d08e'
4
+ data.tar.gz: 51ed1c765234cbf29d386401b32fd63640e064c94c91be8b3d4bb7fb7437ed46
5
5
  SHA512:
6
- metadata.gz: 740911aa120daa509c56b2068b7b8cec23fa37331767525e9bc207c712bdf64115987fc2b9b64218bc710db51898948cbcb86e6716b9075c63aeddd13821ef71
7
- data.tar.gz: ff77c42339e2a555baae6b9ebfaefaa8ab925cb8cc6ab0f23041d25b064f516449a92d9baf7439fb36cae7265b5e30626a723a532d42e9a89129d43c88f47ab9
6
+ metadata.gz: 365fe737726cf052824a70eaa81188a43d804afbe861f9e5e2140af05e772b89e3bbe71e657f37162b9045c094908594cf474f896485c4f51bcd9242420fd178
7
+ data.tar.gz: 5afa057bf594fc7ba4f41f1255614eae21aba0f229a1fac025b4c45a20dddde5edb216728776185fe1e140782ab34c002c67098d5f7ca99a46c7a70206f71db7
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.133
1
+ 1.1.134
data/docs/permission.md CHANGED
@@ -16,13 +16,13 @@
16
16
  ```
17
17
 
18
18
  * `id` (int64): Permission ID
19
- * `path` (string): Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
19
+ * `path` (string): Path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
20
20
  * `user_id` (int64): User ID
21
- * `username` (string): User's username
21
+ * `username` (string): Username (if applicable)
22
22
  * `group_id` (int64): Group ID
23
- * `group_name` (string): Group name if applicable
24
- * `permission` (string): Permission type
25
- * `recursive` (boolean): Does this permission apply to subfolders?
23
+ * `group_name` (string): Group name (if applicable)
24
+ * `permission` (string): Permission type. See the table referenced in the documentation for an explanation of each permission.
25
+ * `recursive` (boolean): Recursive: does this permission apply to subfolders?
26
26
 
27
27
 
28
28
  ---
@@ -18,7 +18,7 @@ module Files
18
18
  @attributes[:id] = value
19
19
  end
20
20
 
21
- # string - Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
21
+ # string - Path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
22
22
  def path
23
23
  @attributes[:path]
24
24
  end
@@ -36,7 +36,7 @@ module Files
36
36
  @attributes[:user_id] = value
37
37
  end
38
38
 
39
- # string - User's username
39
+ # string - Username (if applicable)
40
40
  def username
41
41
  @attributes[:username]
42
42
  end
@@ -54,7 +54,7 @@ module Files
54
54
  @attributes[:group_id] = value
55
55
  end
56
56
 
57
- # string - Group name if applicable
57
+ # string - Group name (if applicable)
58
58
  def group_name
59
59
  @attributes[:group_name]
60
60
  end
@@ -63,7 +63,7 @@ module Files
63
63
  @attributes[:group_name] = value
64
64
  end
65
65
 
66
- # string - Permission type
66
+ # string - Permission type. See the table referenced in the documentation for an explanation of each permission.
67
67
  def permission
68
68
  @attributes[:permission]
69
69
  end
@@ -72,7 +72,7 @@ module Files
72
72
  @attributes[:permission] = value
73
73
  end
74
74
 
75
- # boolean - Does this permission apply to subfolders?
75
+ # boolean - Recursive: does this permission apply to subfolders?
76
76
  def recursive
77
77
  @attributes[:recursive]
78
78
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.133"
4
+ VERSION = "1.1.134"
5
5
  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.1.133
4
+ version: 1.1.134
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-19 00:00:00.000000000 Z
11
+ date: 2024-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable