jena 1.0.1-java → 1.0.2-java

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 684847f5be5c366700f283f7797e45180aa8b943f7dabcc43034a41a20d0cb9e
4
- data.tar.gz: ab5d4f65c7c6ef71c8ece79ab2951e0f12a56072a175b571b999b35844cc82c2
3
+ metadata.gz: 6acbc1ac39cda32c8bf1f7a495594963d739a8b6312d2db507748a2755db62df
4
+ data.tar.gz: b73441e0dd570a5f498c6cbfaaadc87b07144cc603ae8f07397cc854f05cee13
5
5
  SHA512:
6
- metadata.gz: b2085f7c99a6f85d4386e245bfffa19ca1b4f803d7b9ed1b266be5463678317a4288630a07c26425bfdae6395a2bfa03ec5413fa71947f3e32f4b311ac4d2764
7
- data.tar.gz: 8e586b4705f4b22446b763b25a526f4c7c0ac91cc103149aa814cd80319da88c46fe3ae9ab3587b440928d26af2bce34bb00702b561b9ac8a73778a097e084ef
6
+ metadata.gz: 8b788b81c519caa89338a6766b626dcaee4237638d64cc7095a1d638a09cf036c6d395a55f15fd5d7a500a6a3a5bcce2100cf33914ddb458f6820847f14f4170
7
+ data.tar.gz: 89f54021dcb8316d33282aaaff5a6e426d450291d8f1241135e8744dad6d38d483a6e29e92013681eb934de7c8b2a31638e24f6798190005f500f94028a39d51
data/lib/jena.rb CHANGED
@@ -5,7 +5,8 @@ require 'builder'
5
5
 
6
6
  # Make a selection of key Jena classes available in a convenient module
7
7
  module Jena
8
- include_package org.apache.jena
8
+ java_import org.apache.jena
9
+ #include_package org.apache.jena
9
10
 
10
11
  # Import classes under org.apache.jena.*
11
12
  module Model
@@ -67,6 +68,11 @@ module Jena
67
68
  include_package org.apache.jena.query
68
69
  end
69
70
 
71
+ module SPARQL
72
+ include_package org.apache.jena.sparql
73
+ include_package org.apache.jena.sparql.core
74
+ end
75
+
70
76
  module Ontology
71
77
  include_package org.apache.jena.ontology
72
78
  include_package org.apache.jena.ontology.impl
@@ -1,11 +1,9 @@
1
1
 
2
- module Jena::Model::Sta
3
-
4
- ESPACE_CHAR = "\s"
2
+ module Jena::Model::Statement
5
3
 
6
4
  #alias old_get_local_name get_local_name
7
5
  def formatted_name
8
- return self.get_local_name.gsub /_/, ESPACE_CHAR
6
+ return self.get_local_name.gsub /_/, ?\s
9
7
  end
10
8
 
11
9
  end
data/lib/jena/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Jena
2
2
  JENA_VERSION='3.6.0' unless constants.include?(:JENA_VERSION)
3
- JENA_JRUBY_GEM_VERSION='1.0.1' unless constants.include?(:JENA_JRUBY_GEM_VERSION)
3
+ JENA_JRUBY_GEM_VERSION='1.0.2' unless constants.include?(:JENA_JRUBY_GEM_VERSION)
4
4
  end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jena
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: java
6
6
  authors:
7
7
  - Ian Dickinson
8
8
  - Bruno Ferreira
9
9
  - Fábio Almeida
10
- autorequire:
10
+ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2018-05-30 00:00:00.000000000 Z
13
+ date: 2018-06-01 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: A simple packaging of Apache Jena for JRuby
16
16
  email:
@@ -77,7 +77,7 @@ homepage: https://github.com/lysferd/jena
77
77
  licenses:
78
78
  - Apache-2.0
79
79
  metadata: {}
80
- post_install_message:
80
+ post_install_message:
81
81
  rdoc_options: []
82
82
  require_paths:
83
83
  - lib
@@ -93,9 +93,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
93
  - !ruby/object:Gem::Version
94
94
  version: '0'
95
95
  requirements: []
96
- rubyforge_project:
97
- rubygems_version: 2.6.13
98
- signing_key:
96
+ rubyforge_project:
97
+ rubygems_version: 2.7.6
98
+ signing_key:
99
99
  specification_version: 4
100
100
  summary: JRuby wrapper for Apache Jena
101
101
  test_files: