talia_core 0.5.3 → 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION.yml +1 -1
- data/lib/talia_util/rdf_update.rb +2 -2
- metadata +1 -1
data/VERSION.yml
CHANGED
|
@@ -11,8 +11,8 @@ module TaliaUtil
|
|
|
11
11
|
def owl_to_rdfs
|
|
12
12
|
puts "Checking for OWL classes."
|
|
13
13
|
# Register the namespaces for ActiveRDF
|
|
14
|
-
Namespace.register(:rdfs, N::RDFS.to_s)
|
|
15
|
-
Namespace.register(:owl, N::OWL.to_s)
|
|
14
|
+
ActiveRDF::Namespace.register(:rdfs, N::RDFS.to_s)
|
|
15
|
+
ActiveRDF::Namespace.register(:owl, N::OWL.to_s)
|
|
16
16
|
progress = nil
|
|
17
17
|
size, modified, blanks = rdfs_from_owl do |size|
|
|
18
18
|
progress ||= begin
|