easol-canvas 4.5.0 → 4.6.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6251539703843a039facee52ca633b179faed7060789ba0b01b5c39b24d78074
|
4
|
+
data.tar.gz: 8e16897ef9a6ff7455c472720eaf060a261cd917fb05659f374117e5f3156a85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6692904d28a5a921424ea2ca8c277dc796f636d70b0c60347d883de57f66e42aaf04819885173b7a331eb90b9548eca28052cc690c29226fe39612afa2865c16
|
7
|
+
data.tar.gz: b45b707fa6bc0d767ffbf0af45767e189ba7ac28ad3639e244a1634fff64f55ea4cf3aec91b87cd904396b57f71e2db0f8649a9b4b5f02e176396d2ffc19099e
|
data/lib/canvas/constants.rb
CHANGED
@@ -0,0 +1,47 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Canvas
|
4
|
+
module Validator
|
5
|
+
class SchemaAttribute
|
6
|
+
# :documented:
|
7
|
+
# Attribute validations specific to the experience_slot variables.
|
8
|
+
class ExperienceSlot < Base
|
9
|
+
ALLOWED_DEFAULT_VALUES = %w[next_upcoming].freeze
|
10
|
+
|
11
|
+
def validate
|
12
|
+
super && ensure_default_values_are_valid
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def permitted_values_for_default_key
|
18
|
+
if attribute["array"]
|
19
|
+
Array
|
20
|
+
else
|
21
|
+
String
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def ensure_default_values_are_valid
|
26
|
+
return true unless attribute.key?("default")
|
27
|
+
|
28
|
+
if attribute["array"]
|
29
|
+
attribute["default"].all? { |value| default_value_is_valid?(value) }
|
30
|
+
else
|
31
|
+
default_value_is_valid?(attribute["default"])
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def default_value_is_valid?(value)
|
36
|
+
value = value.downcase
|
37
|
+
if !ALLOWED_DEFAULT_VALUES.include?(value)
|
38
|
+
@errors << %["default" for experience_slot variables must be one of: #{ALLOWED_DEFAULT_VALUES.join(', ')}]
|
39
|
+
false
|
40
|
+
else
|
41
|
+
true
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
data/lib/canvas/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easol-canvas
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Byrne
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-
|
12
|
+
date: 2023-12-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: thor
|
@@ -141,6 +141,7 @@ files:
|
|
141
141
|
- lib/canvas/validators/schema_attributes/color.rb
|
142
142
|
- lib/canvas/validators/schema_attributes/date.rb
|
143
143
|
- lib/canvas/validators/schema_attributes/experience_date.rb
|
144
|
+
- lib/canvas/validators/schema_attributes/experience_slot.rb
|
144
145
|
- lib/canvas/validators/schema_attributes/image.rb
|
145
146
|
- lib/canvas/validators/schema_attributes/link.rb
|
146
147
|
- lib/canvas/validators/schema_attributes/number.rb
|