Skip to content

Commit 95ed6b8

Browse files
committed
Add EARL report
1 parent 143b31f commit 95ed6b8

File tree

5 files changed

+2201
-0
lines changed

5 files changed

+2201
-0
lines changed

config/config.exs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import Config
2+
3+
if Mix.env() == :test do
4+
config :rdf_xml, :earl_formatter, author_iri: "http://marcelotto.net/#me"
5+
end

doap.ttl

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
2+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
3+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
4+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
5+
@prefix dc: <http://purl.org/dc/terms/> .
6+
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
7+
@prefix doap: <http://usefulinc.com/ns/doap#> .
8+
9+
<https://hex.pm/packages/rdf_xml> a doap:Project
10+
; doap:name "RDF-XML.ex"
11+
; doap:shortdesc "An implementation of RDF-XML for Elixir and RDF.ex"
12+
; doap:description "RDF-XML.ex is a pure-Elixir library implementation RDF-XML as an RDF.ex serializer"@en
13+
; doap:created "2020-11-16"^^xsd:date
14+
; doap:developer <http://marcelotto.net/#me>
15+
; doap:maintainer <http://marcelotto.net/#me>
16+
; doap:documenter <http://marcelotto.net/#me>
17+
; doap:platform "Erlang/OTP"
18+
; doap:programming-language "Elixir"
19+
; doap:category <http://dbpedia.org/resource/Resource_Description_Framework>
20+
, <http://dbpedia.org/resource/Elixir_(programming_language)>
21+
; doap:implements <http://www.w3.org/TR/rdf-syntax-grammar/>
22+
; doap:homepage <https://rdf-elixir.dev/>
23+
; doap:repository <https://github.com/rdf-elixir/rdf-xml-ex>
24+
; doap:download-page <https://hex.pm/packages/rdf-xml>
25+
; doap:bug-database <https://github.com/rdf-elixir/rdf-xml-ex/issues>
26+
; foaf:maker <http://marcelotto.net/#me>
27+
; dc:creator <http://marcelotto.net/#me>
28+
.
29+
30+
<http://marcelotto.net/#me> a foaf:Person
31+
; foaf:name "Marcel Otto"
32+
; foaf:homepage <http://marcelotto.net/>
33+
.

0 commit comments

Comments
 (0)