Skip to content

Commit 8534131

Browse files
committed
Extract information from protocol_validator.cgi in to Ruby script used to generate manifest variations.
Uses HTTP and CNT ontologies to encode server interactions.
1 parent 2b51162 commit 8534131

File tree

7 files changed

+8368
-2164
lines changed

7 files changed

+8368
-2164
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Builds manifests
2+
task default: [:jsonld, :ttl, :html]
3+
4+
task jsonld: "gen_manifest.rb" do
5+
%x(ruby gen_manifest.rb -o manifest.jsonld)
6+
end
7+
8+
task ttl: "gen_manifest.rb" do
9+
%x(ruby gen_manifest.rb --format ttl -o manifest.ttl)
10+
end
11+
12+
task html: "gen_manifest.rb" do
13+
%x(ruby gen_manifest.rb --format html -o index.html)
14+
end

0 commit comments

Comments
 (0)