lib/rdf/vocab/doap.rb in rdf-vocab-2.1.0 vs lib/rdf/vocab/doap.rb in rdf-vocab-2.1.1
- old
+ new
@@ -7,10 +7,20 @@
# # Vocabulary for <http://usefulinc.com/ns/doap#>
# class DOAP < RDF::StrictVocabulary
# end
class DOAP < RDF::StrictVocabulary("http://usefulinc.com/ns/doap#")
+ # Ontology definition
+ ontology :"http://usefulinc.com/ns/doap#",
+ :"dc11:creator" => %(Edd Dumbill).freeze,
+ :"dc11:description" => %(The Description of a Project \(DOAP\) vocabulary, described using W3C RDF Schema and the Web Ontology Language.).freeze,
+ :"dc11:format" => %(application/rdf+xml).freeze,
+ :"dc11:rights" => %(Copyright © 2004-2009 Edd Dumbill).freeze,
+ :"dc11:title" => %(Description of a Project \(DOAP\) vocabulary).freeze,
+ :"owl:imports" => %(foaf:).freeze,
+ type: "owl:Ontology".freeze
+
# Class definitions
term :ArchRepository,
comment: %(GNU Arch source code repository.).freeze,
label: "GNU Arch repository".freeze,
:"rdfs:isDefinedBy" => %(doap:).freeze,
@@ -324,18 +334,7 @@
comment: %(URL of Wiki for collaborative discussion of project.).freeze,
domain: "doap:Project".freeze,
label: "wiki".freeze,
:"rdfs:isDefinedBy" => %(doap:).freeze,
type: "rdf:Property".freeze
-
- # Extra definitions
- term :"",
- :"dc11:creator" => %(Edd Dumbill).freeze,
- :"dc11:description" => %(The Description of a Project \(DOAP\) vocabulary, described using W3C RDF Schema and the Web Ontology Language.).freeze,
- :"dc11:format" => %(application/rdf+xml).freeze,
- :"dc11:rights" => %(Copyright © 2004-2009 Edd Dumbill).freeze,
- :"dc11:title" => %(Description of a Project \(DOAP\) vocabulary).freeze,
- label: "".freeze,
- :"owl:imports" => %(foaf:).freeze,
- type: "owl:Ontology".freeze
end
end