files.com 1.1.604 → 1.1.605
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/clickwrap.md +4 -4
- data/lib/files.com/models/clickwrap.rb +4 -4
- data/lib/files.com/version.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: b897c4afdd2176526743b2a4202037c7b6908a274bd7a2d8e437fb7d8a3ed1ad
|
|
4
|
+
data.tar.gz: '078b68d769eb4c9a4ff551f3a00ecd7fa47ae8814c1aab2a48c37a5435d620f6'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f847476d8069f9720e8d8f84121431349e5012a8ed01de64caafa21b2df61fb2a8f914c0fe2d021bdaaaf3fc3e7a4b8173ad45a848bdcd58008943dd436f8fd2
|
|
7
|
+
data.tar.gz: f361e278971ea7874d5147915ecbde80eed6b41a245d94831288266d1eb68046e507fe7b5b5a196ca45c483d90106300bc0e566a30ed34e241a2ceb4bb87d76d
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.605
|
data/docs/clickwrap.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
* `id` (int64): Clickwrap ID
|
|
17
17
|
* `name` (string): Name of the Clickwrap agreement (used when selecting from multiple Clickwrap agreements.)
|
|
18
18
|
* `body` (string): Body text of Clickwrap (supports Markdown formatting).
|
|
19
|
-
* `use_with_users` (string): Use this Clickwrap for
|
|
19
|
+
* `use_with_users` (string): Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
|
|
20
20
|
* `use_with_bundles` (string): Use this Clickwrap for Bundles?
|
|
21
21
|
* `use_with_inboxes` (string): Use this Clickwrap for Inboxes?
|
|
22
22
|
|
|
@@ -69,7 +69,7 @@ Files::Clickwrap.create(
|
|
|
69
69
|
* `body` (string): Body text of Clickwrap (supports Markdown formatting).
|
|
70
70
|
* `use_with_bundles` (string): Use this Clickwrap for Bundles?
|
|
71
71
|
* `use_with_inboxes` (string): Use this Clickwrap for Inboxes?
|
|
72
|
-
* `use_with_users` (string): Use this Clickwrap for
|
|
72
|
+
* `use_with_users` (string): Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
---
|
|
@@ -93,7 +93,7 @@ Files::Clickwrap.update(id,
|
|
|
93
93
|
* `body` (string): Body text of Clickwrap (supports Markdown formatting).
|
|
94
94
|
* `use_with_bundles` (string): Use this Clickwrap for Bundles?
|
|
95
95
|
* `use_with_inboxes` (string): Use this Clickwrap for Inboxes?
|
|
96
|
-
* `use_with_users` (string): Use this Clickwrap for
|
|
96
|
+
* `use_with_users` (string): Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
|
|
97
97
|
|
|
98
98
|
|
|
99
99
|
---
|
|
@@ -132,7 +132,7 @@ clickwrap.update(
|
|
|
132
132
|
* `body` (string): Body text of Clickwrap (supports Markdown formatting).
|
|
133
133
|
* `use_with_bundles` (string): Use this Clickwrap for Bundles?
|
|
134
134
|
* `use_with_inboxes` (string): Use this Clickwrap for Inboxes?
|
|
135
|
-
* `use_with_users` (string): Use this Clickwrap for
|
|
135
|
+
* `use_with_users` (string): Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
|
|
136
136
|
|
|
137
137
|
|
|
138
138
|
---
|
|
@@ -36,7 +36,7 @@ module Files
|
|
|
36
36
|
@attributes[:body] = value
|
|
37
37
|
end
|
|
38
38
|
|
|
39
|
-
# string - Use this Clickwrap for
|
|
39
|
+
# string - Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
|
|
40
40
|
def use_with_users
|
|
41
41
|
@attributes[:use_with_users]
|
|
42
42
|
end
|
|
@@ -68,7 +68,7 @@ module Files
|
|
|
68
68
|
# body - string - Body text of Clickwrap (supports Markdown formatting).
|
|
69
69
|
# use_with_bundles - string - Use this Clickwrap for Bundles?
|
|
70
70
|
# use_with_inboxes - string - Use this Clickwrap for Inboxes?
|
|
71
|
-
# use_with_users - string - Use this Clickwrap for
|
|
71
|
+
# use_with_users - string - Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
|
|
72
72
|
def update(params = {})
|
|
73
73
|
params ||= {}
|
|
74
74
|
params[:id] = @attributes[:id]
|
|
@@ -149,7 +149,7 @@ module Files
|
|
|
149
149
|
# body - string - Body text of Clickwrap (supports Markdown formatting).
|
|
150
150
|
# use_with_bundles - string - Use this Clickwrap for Bundles?
|
|
151
151
|
# use_with_inboxes - string - Use this Clickwrap for Inboxes?
|
|
152
|
-
# use_with_users - string - Use this Clickwrap for
|
|
152
|
+
# use_with_users - string - Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
|
|
153
153
|
def self.create(params = {}, options = {})
|
|
154
154
|
raise InvalidParameterError.new("Bad parameter: name must be an String") if params[:name] and !params[:name].is_a?(String)
|
|
155
155
|
raise InvalidParameterError.new("Bad parameter: body must be an String") if params[:body] and !params[:body].is_a?(String)
|
|
@@ -166,7 +166,7 @@ module Files
|
|
|
166
166
|
# body - string - Body text of Clickwrap (supports Markdown formatting).
|
|
167
167
|
# use_with_bundles - string - Use this Clickwrap for Bundles?
|
|
168
168
|
# use_with_inboxes - string - Use this Clickwrap for Inboxes?
|
|
169
|
-
# use_with_users - string - Use this Clickwrap for
|
|
169
|
+
# use_with_users - string - Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
|
|
170
170
|
def self.update(id, params = {}, options = {})
|
|
171
171
|
params ||= {}
|
|
172
172
|
params[:id] = id
|
data/lib/files.com/version.rb
CHANGED
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.
|
|
4
|
+
version: 1.1.605
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- files.com
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|