-
Notifications
You must be signed in to change notification settings - Fork 2
/
demo_steps
47 lines (41 loc) · 1.17 KB
/
demo_steps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require './demo'
show_schema(SCHEMA)
schema = Schema.new(SCHEMA)
schema.overlays
schema.bit_attributes
schema.required_attributes
schema.default_values
schema.attribute_labels
schema.attribute_informations
show_overlay(ENTRY_OVERLAY)
schema.apply_entry_overlay(ENTRY_OVERLAY)
schema.overlays
schema.bit_attributes
schema.attributes # notice missing hidden field race2Specific
schema.required_attributes
schema.default_values
show_overlay(LABEL_OVERLAY)
schema.apply_label_overlay(LABEL_OVERLAY)
schema.attribute_labels
schema.overlays
show_overlay(LABEL_OVERLAY_PL)
schema.apply_label_overlay(LABEL_OVERLAY_PL)
schema.attribute_labels
schema.overlays
show_overlay(INFORMATION_OVERLAY)
schema.apply_information_overlay(INFORMATION_OVERLAY)
schema.overlays
schema.attribute_informations
show_overlay(INFORMATION_OVERLAY_PL)
schema.apply_information_overlay(INFORMATION_OVERLAY_PL)
schema.overlays
schema.attribute_informations
show_overlay(SUBSET_OVERLAY)
schema.apply_subset_overlay(SUBSET_OVERLAY)
schema.overlays
schema.attributes
schema.attribute_labels
schema.attribute_informations
schema.required_attributes
show_overlay(SENSITIVE_OVERLAY)
schema.apply_sensitive_overlay(SENSITIVE_OVERLAY)