We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
verify_data
1 parent 094e658 commit c44e238Copy full SHA for c44e238
1 file changed
Rakefile
@@ -25,12 +25,15 @@ task :verify_data do
25
"mastodon",
26
"reg_phrase",
27
"reg_date",
28
- "cfp_phrase",
29
- "cfp_date",
+ "cfp_open_date",
+ "cfp_close_date",
30
+ "cfp_link",
31
+ "status",
32
+ "date_precision",
33
"video_link",
34
"announced_on"
35
]
- data = YAML.load File.read "_data/conferences.yml"
36
+ data = YAML.load_file("_data/conferences.yml", permitted_classes: [Date])
37
validator = DataFileValidator.validate(data, allowed_keys)
38
39
exit 3 if validator.missing_keys?
0 commit comments