rdfobjects 0.6.5 → 0.6.6
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rdf_objects/rdf_resource.rb +1 -1
- metadata +1 -1
@@ -78,7 +78,7 @@ module RDFObject
|
|
78
78
|
local_collection = Parser.parse(rdf)
|
79
79
|
local_collection[self.uri].assertions.each do | predicate, object |
|
80
80
|
[*object].each do | obj |
|
81
|
-
self.assert(predicate,
|
81
|
+
self.assert(predicate, obj) unless self.assertion_exists?(predicate, obj)
|
82
82
|
end
|
83
83
|
end
|
84
84
|
end
|