rdf-jena 0.2.1-java → 0.3.0-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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/rdf/jena.rb +1 -1
- data/lib/rdf/jena/jars/{rdf-jena-0.2.0.jar → rdf-jena-0.3.0.jar} +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 121d2c07b2dc38beb9f5c2a2011fac2d0f4ac8d7
|
4
|
+
data.tar.gz: 7509632993ec181405f14fdd91725f9aaf75bf20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18388ca7854c5cc79f9b10ac214a4342ac5e87d68135e01235d4b4f763acbf290e2cd033018a475e76d0e046313d12e773dd9b0e6023a832eda01b87fef26c80
|
7
|
+
data.tar.gz: d0c0c48e8c6349436bf3d81da6a43f7995b204156604bd3725d4f1605fc97b737161e5b2eb25976420acef6affab873dc815e3fa221dfe0d3d3f918bcbea09b7
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,15 @@ All notable changes to rdf-jena will be documented in this file. The curated log
|
|
4
4
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
6
6
|
|
7
|
+
## [0.3.0][0.3.0] - 2015-12-07
|
8
|
+
### Changed
|
9
|
+
- RDF::Jena::Repository now acts like a Jena DatasetGraph. This can be treated like a quad store as well as individual graphs (i.e. each_graph).
|
10
|
+
- RDF::Jena::Graph now acts like a Jena Graph.
|
11
|
+
|
12
|
+
### Added
|
13
|
+
- Repository/Graph now implement insert_statements(enumerator) and insert_reader(IO). The insert_reader only takes IO at the moment and assumes NQUADS for Repository, NTRIPLES from Graph.
|
14
|
+
- Repository provides the 'graph_size' method to return number of graphs. The 'size' method will return number of quads in the Repository.
|
15
|
+
|
7
16
|
## [0.2.1][0.2.1] - 2015-12-03
|
8
17
|
### Added
|
9
18
|
- Included install-time checks that JRuby is running on Java 8.
|
@@ -26,4 +35,5 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
26
35
|
- Supporting boolean flag on RDF::Repository to union named graphs with the default when retrieved (see `each_graph`).
|
27
36
|
|
28
37
|
[RDF.rb]: https://github.com/ruby-rdf/rdf
|
38
|
+
[0.3.0]: https://github.com/abargnesi/rdf-jena/compare/0.2.1...0.3.0
|
29
39
|
[0.2.1]: https://github.com/abargnesi/rdf-jena/compare/0.2.0...0.2.1
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.3.0
|
data/lib/rdf/jena.rb
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdf-jena
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Anthony Bargnesi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-12-
|
11
|
+
date: 2015-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -149,7 +149,7 @@ files:
|
|
149
149
|
- VERSION
|
150
150
|
- ext/jruby/extconf.rb
|
151
151
|
- lib/rdf/jena.rb
|
152
|
-
- lib/rdf/jena/jars/rdf-jena-0.
|
152
|
+
- lib/rdf/jena/jars/rdf-jena-0.3.0.jar
|
153
153
|
- lib/rdf/jena/version.rb
|
154
154
|
- rdf-jena.gemspec
|
155
155
|
homepage: https://github.com/abargnesi/rdf-jena
|