linkeddata 2.0.0.beta1 → 2.0.0.beta2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +22 -18
  3. data/VERSION +1 -1
  4. data/lib/linkeddata.rb +3 -0
  5. metadata +23 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e87b64bb56db5e45f523558b64ebc9bcfaf5eb3f
4
- data.tar.gz: 83462828616698246769d05749f0f0785e116bda
3
+ metadata.gz: ef13dd86c724027413a2c750b62fdadd9fbb93c1
4
+ data.tar.gz: 4858de9ea16966412d96ff8dbee24619271a432f
5
5
  SHA512:
6
- metadata.gz: d05482c7f81c16accbb44330b75dab59009a43db08a4f2f92524657b1807512977cd8131957cd8b10f408e36bb89a41c6cffaa103b6033516fda364bcec6a924
7
- data.tar.gz: a5332e9c379cee21661e07e21dc11d960ca3be25d08d171fa0856a1b36e599bb45a4d0ab6671e89548e5625aa8930c9c48d80e3f633e67d8ff99b7a26b8982b5
6
+ metadata.gz: 217284a8132874c876844b33ccad7a34ebe076519508e845685004bde65c2a48eb8bab007da8065134a79d3a3cb76e91ce890b2f14b7f39a9cefe89225425c42
7
+ data.tar.gz: 9f0b54e1d90befd37f36a91f5c03c1a769479b72f0e4d0d355a87172630356b207e7057725e0c65b1ba223e0524fbe18a165988157fe8966f7cfc8870bc71e9e
data/README.md CHANGED
@@ -22,6 +22,7 @@ consuming [Linked Data][] with Ruby as quick & easy as possible.
22
22
  * Includes [TriX][] support using the [RDF::TriX][] gem.
23
23
  * Includes [Turtle][] support using the [RDF::Turtle][] gem.
24
24
  * Includes [JSON-LD][] support using the [JSON::LD][] gem.
25
+ * Includes [LD Patch][] support using the [LD::Patch][] gem.
25
26
  * Includes Aggregate Repository support using [RDF::AggregateRepo][], which allows graphs and repositories to be aggregated from multiple sources.
26
27
  * Includes [SPARQL][] support using the [SPARQL][SPARQL gem] and [SPARQL::Client][] gems
27
28
  * Maintains release parity with RDF.rb.
@@ -42,22 +43,23 @@ Nokogiri is only a soft dependency, so environments where using native gems is n
42
43
  include only the gems upon which they directly depend.
43
44
 
44
45
  * Ruby (>= 2.0)
45
- * [RDF.rb][] ('~> 1.99')
46
- * [RDF::AggregateRepo][] ('~> 1.99')
47
- * [RDF::Isomorphic][] ('~> 1.99')
48
- * [RDF::JSON][] ('~> 1.1', '>= 1.1.2')
46
+ * [RDF.rb][] ('~> 2.0')
47
+ * [RDF::AggregateRepo][] ('~> 2.0')
48
+ * [RDF::Isomorphic][] ('~> 2.0')
49
+ * [RDF::JSON][] ('~> 2.0')
49
50
  * [RDF::Microdata][] ('~> 2.0', '>= 2.0.2')
50
- * [RDF::N3][] ('~> 1.99')
51
- * [RDF::RDFa][] ('~> 1.99')
52
- * [RDF::RDFXML][] ('~> 1.1', '>= 1.1.5')
53
- * [RDF::Reasoner][] ('~> 0.3')
54
- * [RDF::TriG][] ('~> 1.99')
55
- * [RDF::TriX][] ('~> 1.99')
56
- * [RDF::Turtle][] ('~> 1.99')
57
- * [RDF::Vocab][] ('~> 0.8')
58
- * [JSON::LD][] (''~> 1.99')
59
- * [SPARQL][SPARQL gem] ('~> 1.99')
60
- * [SPARQL::Client][] ('~> 1.99')
51
+ * [RDF::N3][] ('~> 2.0')
52
+ * [RDF::RDFa][] ('~> 2.0')
53
+ * [RDF::RDFXML][] ('~> 2.0')
54
+ * [RDF::Reasoner][] ('~> 0.4')
55
+ * [RDF::TriG][] ('~> 2.0')
56
+ * [RDF::TriX][] ('~> 2.0')
57
+ * [RDF::Turtle][] ('~> 2.0')
58
+ * [RDF::Vocab][] ('~> 2.0')
59
+ * [JSON::LD][] (''~> 2.0')
60
+ * [LD::Patch][] (''~> 0.3')
61
+ * [SPARQL][SPARQL gem] ('~> 2.0')
62
+ * [SPARQL::Client][] ('~> 2.0')
61
63
  * [Nokogiri][] ('~> 1.6')
62
64
  * [Equivalent-XML](http://rubygems.org/gems/equivalent-xml) ('~> 0.6')
63
65
 
@@ -88,13 +90,15 @@ see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
88
90
  [RDF::Turtle]: http://ruby-rdf.github.com/rdf-turtle
89
91
  [RDF::Vocab]: http://ruby-rdf.github.com/rdf-vocab
90
92
  [Linked Data]: http://linkeddata.org/
91
- [Microdata]: http://www.w3.org/TR/microdata-rdf/
92
- [N-Quads]: http://www.w3.org/TR/n-quads/
93
- [N-Triples]: http://www.w3.org/TR/n-triples/
93
+ [Microdata]: http://www.w3.org/TR/microdata-rdf/ "Microdata to RDF"
94
+ [N-Quads]: http://www.w3.org/TR/n-quads/ "N-Quads"
95
+ [N-Triples]: http://www.w3.org/TR/n-triples/ "N-Triples"
94
96
  [Notation3]: http://en.wikipedia.org/wiki/Notation3
95
97
  [Nokogiri]: http://rubygems.org/gems/nokogiri
96
98
  [JSON-LD]: http://www.w3.org/TR/json-ld/ "JSON-LD 1.0"
97
99
  [JSON::LD]: http://gkellogg.github.com/json-ld
100
+ [LD Patch]: http://www.w3.org/TR/ldpatch/ "LD Patch"
101
+ [LD::Patch]: http://gkellogg.github.com/ld-patch
98
102
  [SPARQL gem]: http://ruby-rdf.github.com/sparql
99
103
  [SPARQL::Client]: http://ruby-rdf.github.com/sparql-client
100
104
  [RDF/JSON]: http://n2.talis.com/wiki/RDF_JSON_Specification
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.0.0.beta1
1
+ 2.0.0.beta2
data/lib/linkeddata.rb CHANGED
@@ -55,5 +55,8 @@ module LinkedData
55
55
  # @see http://rubygems.org/gems/sparql-client
56
56
  require 'sparql/client'
57
57
 
58
+ # @see http://rubygems.org/gems/ld-patch
59
+ require 'ld/patch'
60
+
58
61
  include RDF
59
62
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: linkeddata
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.beta1
4
+ version: 2.0.0.beta2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arto Bendiken
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2016-02-22 00:00:00.000000000 Z
14
+ date: 2016-04-06 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rdf
@@ -333,6 +333,26 @@ dependencies:
333
333
  - - "<"
334
334
  - !ruby/object:Gem::Version
335
335
  version: '3'
336
+ - !ruby/object:Gem::Dependency
337
+ name: ld-patch
338
+ requirement: !ruby/object:Gem::Requirement
339
+ requirements:
340
+ - - ">="
341
+ - !ruby/object:Gem::Version
342
+ version: 0.3.0.beta
343
+ - - "<"
344
+ - !ruby/object:Gem::Version
345
+ version: '1'
346
+ type: :runtime
347
+ prerelease: false
348
+ version_requirements: !ruby/object:Gem::Requirement
349
+ requirements:
350
+ - - ">="
351
+ - !ruby/object:Gem::Version
352
+ version: 0.3.0.beta
353
+ - - "<"
354
+ - !ruby/object:Gem::Version
355
+ version: '1'
336
356
  - !ruby/object:Gem::Dependency
337
357
  name: sparql
338
358
  requirement: !ruby/object:Gem::Requirement
@@ -496,7 +516,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
496
516
  version: 1.3.1
497
517
  requirements: []
498
518
  rubyforge_project: datagraph
499
- rubygems_version: 2.5.1
519
+ rubygems_version: 2.4.8
500
520
  signing_key:
501
521
  specification_version: 4
502
522
  summary: Linked Data for Ruby.