rdf-trig 3.1.0 → 3.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed8064b3aab791a8c475659172e9e6e46e70f4aca09138226f4b221f6e4017ca
4
- data.tar.gz: e010f71f33a08b0ddc4b9a9737972036e256beff89ac16224b49be49a73ac516
3
+ metadata.gz: f1d8dbbc7d4a803a805ddb7dfe29359490d16ceef967164a28272cc9644f27aa
4
+ data.tar.gz: 839cf54eed3bd0f495719d153d01279e715166eeb5a3c4801426928493cc54f8
5
5
  SHA512:
6
- metadata.gz: db9f90e829bccf4ada3be5f41a3998b7acde186f9b4c5a9124ca62da1e2ae660bfbd497ba17dd3848c65c698107dad28b1c2d544c198bb9d9c9d649d36ab060e
7
- data.tar.gz: 5435db3b105daad03cc844a334d029b12e1b6ff118713db9c295c540f7d48bafa6767f7ed420ab2bedd2800a2116ffb2e9c543b3cbf36f7b09d8672dc356c1ce
6
+ metadata.gz: 376e7606927e27df2fcf047397641128979a6929cad69a1e164f70fa95ba3b98a4e24bc436bb8a7168aac10eeb5d1ef45abaff6df332cf0d93c18818a7f6c198
7
+ data.tar.gz: 1e4aa2e7619f1d78aa5e7584d1dffdcea6492a32a03784319db88fecd4534ef1fb0578d82426c84c34c44511efa5573d2cbf896aca3801773e2d7668ebc5a135
data/README.md CHANGED
@@ -2,10 +2,9 @@
2
2
 
3
3
  [TriG][] reader/writer for [RDF.rb][RDF.rb] .
4
4
 
5
- [![Gem Version](https://badge.fury.io/rb/rdf-trig.png)](http://badge.fury.io/rb/rdf-trig)
6
- [![Build Status](https://travis-ci.org/ruby-rdf/rdf-trig.png?branch=master)](http://travis-ci.org/ruby-rdf/rdf-trig)
5
+ [![Gem Version](https://badge.fury.io/rb/rdf-trig.png)](https://badge.fury.io/rb/rdf-trig)
6
+ [![Build Status](https://travis-ci.org/ruby-rdf/rdf-trig.png?branch=master)](https://travis-ci.org/ruby-rdf/rdf-trig)
7
7
  [![Coverage Status](https://coveralls.io/repos/ruby-rdf/rdf-trig/badge.svg)](https://coveralls.io/r/ruby-rdf/rdf-trig)
8
- [![Dependency Status](https://gemnasium.com/ruby-rdf/rdf-trig.png)](https://gemnasium.com/ruby-rdf/rdf-trig)
9
8
 
10
9
  ## Description
11
10
  This is a [Ruby][] implementation of a [TriG][] reader and writer for [RDF.rb][].
@@ -15,7 +14,7 @@ RDF::TriG parses [TriG][Trig] into statements or quads. It also serializes to Tr
15
14
 
16
15
  Install with `gem install rdf-trig`
17
16
 
18
- * 100% free and unencumbered [public domain](http://unlicense.org/) software.
17
+ * 100% free and unencumbered [public domain](https://unlicense.org/) software.
19
18
  * Implements a complete parser and serializer for [TriG][].
20
19
  * Compatible with Ruby 2.x, and JRuby 1.7+.
21
20
  * Optional streaming writer, to serialize large graphs
@@ -58,22 +57,22 @@ There is a new `:stream` option to {RDF::TriG::Writer} which is more efficient f
58
57
 
59
58
  ## Dependencies
60
59
 
61
- * [Ruby](http://ruby-lang.org/) (>= 2.2.2)
62
- * [RDF.rb](http://rubygems.org/gems/rdf) (~> 3.0)
63
- * [rdf-turtle](http://rubygems.org/gems/rdf-turtle) (~> 3.0)
60
+ * [Ruby](https://ruby-lang.org/) (>= 2.2.2)
61
+ * [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.0)
62
+ * [rdf-turtle](https://rubygems.org/gems/rdf-turtle) (~> 3.0)
64
63
 
65
64
  ## Installation
66
65
 
67
- The recommended installation method is via [RubyGems](http://rubygems.org/).
66
+ The recommended installation method is via [RubyGems](https://rubygems.org/).
68
67
  To install the latest official release of the `RDF::TriG` gem, do:
69
68
 
70
69
  % [sudo] gem install rdf-trig
71
70
 
72
71
  ## Mailing List
73
- * <http://lists.w3.org/Archives/Public/public-rdf-ruby/>
72
+ * <https://lists.w3.org/Archives/Public/public-rdf-ruby/>
74
73
 
75
74
  ## Author
76
- * [Gregg Kellogg](http://github.com/gkellogg) - <http://greggkellogg.net/>
75
+ * [Gregg Kellogg](https://github.com/gkellogg) - <https://greggkellogg.net/>
77
76
 
78
77
  ## Contributing
79
78
  * Do your best to adhere to the existing coding conventions and idioms.
@@ -90,18 +89,18 @@ To install the latest official release of the `RDF::TriG` gem, do:
90
89
 
91
90
  ## License
92
91
  This is free and unencumbered public domain software. For more information,
93
- see <http://unlicense.org/> or the accompanying {file:UNLICENSE} file.
94
-
95
- A copy of the [TriG EBNF][] and derived parser files are included in the repository, which are not covered under the UNLICENSE. These files are covered via the [W3C Document License](http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231).
96
-
97
- [Ruby]: http://ruby-lang.org/
98
- [RDF]: http://www.w3.org/RDF/
99
- [YARD]: http://yardoc.org/
100
- [YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md
101
- [PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
102
- [RDF.rb]: http://rubydoc.info/github/ruby-rdf/rdf/master/frames
103
- [Backports]: http://rubygems.org/gems/backports
104
- [TriG]: http://www.w3.org/TR/trig/
105
- [TriG doc]: http://rubydoc.info/github/ruby-rdf/rdf-trig/master/file/README.markdown
106
- [TriG EBNF]: http://dvcs.w3.org/hg/rdf/raw-file/default/trig/trig.bnf
107
- [Turtle doc]: http://rubydoc.info/github/ruby-rdf/rdf-turtle/master/file/README.markdown
92
+ see <https://unlicense.org/> or the accompanying {file:UNLICENSE} file.
93
+
94
+ A copy of the [TriG EBNF][] and derived parser files are included in the repository, which are not covered under the UNLICENSE. These files are covered via the [W3C Document License](https://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231).
95
+
96
+ [Ruby]: https://ruby-lang.org/
97
+ [RDF]: https://www.w3.org/RDF/
98
+ [YARD]: https://yardoc.org/
99
+ [YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md
100
+ [PDD]: https://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
101
+ [RDF.rb]: https://rubydoc.info/github/ruby-rdf/rdf/master/frames
102
+ [Backports]: https://rubygems.org/gems/backports
103
+ [TriG]: https://www.w3.org/TR/trig/
104
+ [TriG doc]: https://rubydoc.info/github/ruby-rdf/rdf-trig/master/file/README.markdown
105
+ [TriG EBNF]: https://dvcs.w3.org/hg/rdf/raw-file/default/trig/trig.bnf
106
+ [Turtle doc]: https://rubydoc.info/github/ruby-rdf/rdf-turtle/master/file/README.markdown
data/UNLICENSE CHANGED
@@ -21,4 +21,4 @@ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
21
  ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
22
  OTHER DEALINGS IN THE SOFTWARE.
23
23
 
24
- For more information, please refer to <http://unlicense.org/>
24
+ For more information, please refer to <https://unlicense.org/>
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.1.0
1
+ 3.1.1
@@ -15,11 +15,11 @@ module RDF
15
15
  # end
16
16
  # end
17
17
  #
18
- # @see http://rubydoc.info/github/ruby-rdf/rdf-turtle/
19
- # @see http://rubydoc.info/github/ruby-rdf/rdf/master/
20
- # @see http://www.w3.org/TR/trig/
18
+ # @see https://rubydoc.info/github/ruby-rdf/rdf-turtle/
19
+ # @see https://rubydoc.info/github/ruby-rdf/rdf/master/
20
+ # @see https://www.w3.org/TR/trig/
21
21
  #
22
- # @author [Gregg Kellogg](http://greggkellogg.net/)
22
+ # @author [Gregg Kellogg](https://greggkellogg.net/)
23
23
  module TriG
24
24
  require 'rdf/trig/format'
25
25
  autoload :Reader, 'rdf/trig/reader'
@@ -14,7 +14,7 @@ module RDF::TriG
14
14
  # @example Obtaining serialization format file extension mappings
15
15
  # RDF::Format.file_extensions #=> {trig: "application/trig"}
16
16
  #
17
- # @see http://www.w3.org/TR/rdf-testcases/#ntriples
17
+ # @see https://www.w3.org/TR/rdf-testcases/#ntriples
18
18
  class Format < RDF::Format
19
19
  content_type 'application/trig', extension: :trig, alias: 'application/x-trig;q=0.2'
20
20
  content_encoding 'utf-8'
@@ -1,7 +1,7 @@
1
1
  module RDF::TriG
2
2
  ##
3
3
  # Streaming writer interface
4
- # @author [Gregg Kellogg](http://greggkellogg.net/)
4
+ # @author [Gregg Kellogg](https://greggkellogg.net/)
5
5
  module StreamingWriter
6
6
  ##
7
7
  # Write out a statement, retaining current
@@ -54,7 +54,7 @@ module RDF::TriG
54
54
  # end
55
55
  # end
56
56
  #
57
- # @author [Gregg Kellogg](http://greggkellogg.net/)
57
+ # @author [Gregg Kellogg](https://greggkellogg.net/)
58
58
  class Writer < RDF::Turtle::Writer
59
59
  include StreamingWriter
60
60
  format RDF::TriG::Format
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdf-trig
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregg Kellogg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-10 00:00:00.000000000 Z
11
+ date: 2020-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rdf
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.1'
33
+ version: '2.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.1'
40
+ version: '2.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rdf-turtle
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -167,7 +167,7 @@ files:
167
167
  - lib/rdf/trig/streaming_writer.rb
168
168
  - lib/rdf/trig/version.rb
169
169
  - lib/rdf/trig/writer.rb
170
- homepage: http://ruby-rdf.github.com/rdf-trig
170
+ homepage: https://github.com/ruby-rdf/rdf-trig
171
171
  licenses:
172
172
  - Unlicense
173
173
  metadata: {}
@@ -186,7 +186,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
186
186
  - !ruby/object:Gem::Version
187
187
  version: '0'
188
188
  requirements: []
189
- rubygems_version: 3.0.6
189
+ rubygems_version: 3.1.3
190
190
  signing_key:
191
191
  specification_version: 4
192
192
  summary: TriG reader/writer for Ruby.