rdf-normalize 0.3.1 → 0.3.2

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
  SHA1:
3
- metadata.gz: bba920e9dddcb07198cfcf1604d6c500d0634979
4
- data.tar.gz: 9c17207f8fce5faa7b74d42363c253b9d694e910
3
+ metadata.gz: 8dd9dad5ab1c95eb3ea2d63dbfc44d87c4568d55
4
+ data.tar.gz: 7d66b936abf5006a36a23d299fd5a1e1e77cf0f7
5
5
  SHA512:
6
- metadata.gz: 016b2437c6e376bdbded0f9ee3d83aa0ce0ccb431d37224020abc6469cf1411e6d0686b620a6fac006ea0b6ffda06bb5ef087b7a11734106cbee4c7f7026bd8f
7
- data.tar.gz: 6f83182eee27eefe79d6d9bb68efab7ff3d5712b49ed7a87c0779e061b1512859ae61643a41022eb83e5000a66b281966fcba6507e930084b5bd4a46515e998d
6
+ metadata.gz: 1964870b460a74dc576e71140fb7b2b3e565f2728595b49230e0c9773919f1277dbebda8015684933a0774ca8672bf0b4e90e11dc412a79effd92bae6a5e4026
7
+ data.tar.gz: b009451049fea594b17316c1ebf11a5f1ebd815878521d25e7f5186db6a64b36b4faa58a6b0adb9cd34a23fc75c4a8225b34f2b4a331ca3c7a9f4af85dd9d6ef
data/README.md CHANGED
@@ -79,4 +79,4 @@ see <http://unlicense.org/> or the accompanying {file:LICENSE} file.
79
79
  [RDF.rb]: http://rubydoc.info/github/ruby-rdf/rdf-normalize
80
80
  [N-Triples]: http://www.w3.org/TR/rdf-testcases/#ntriples
81
81
  [RDF Normalize]:http://json-ld.github.io/normalization/spec/
82
- [Normalize doc]:http://rubydoc.info/github/ruby-rdf/rdf-normalize/master/file/README.markdown
82
+ [Normalize doc]:http://rubydoc.info/github/ruby-rdf/rdf-normalize/master
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.1
1
+ 0.3.2
@@ -0,0 +1,18 @@
1
+ module RDF::Normalize::VERSION
2
+ VERSION_FILE = File.join(File.expand_path(File.dirname(__FILE__)), "..", "..", "..", "VERSION")
3
+ MAJOR, MINOR, TINY, EXTRA = File.read(VERSION_FILE).chop.split(".")
4
+
5
+ STRING = [MAJOR, MINOR, TINY, EXTRA].compact.join('.')
6
+
7
+ ##
8
+ # @return [String]
9
+ def self.to_s() STRING end
10
+
11
+ ##
12
+ # @return [String]
13
+ def self.to_str() STRING end
14
+
15
+ ##
16
+ # @return [Array(Integer, Integer, Integer)]
17
+ def self.to_a() STRING.split(".") end
18
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdf-normalize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregg Kellogg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-31 00:00:00.000000000 Z
11
+ date: 2017-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rdf
@@ -130,6 +130,7 @@ files:
130
130
  - lib/rdf/normalize/format.rb
131
131
  - lib/rdf/normalize/urdna2015.rb
132
132
  - lib/rdf/normalize/urgna2012.rb
133
+ - lib/rdf/normalize/version.rb
133
134
  - lib/rdf/normalize/writer.rb
134
135
  homepage: http://github.com/gkellogg/rdf-normalize
135
136
  licenses:
@@ -151,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
151
152
  version: '0'
152
153
  requirements: []
153
154
  rubyforge_project: rdf-normalize
154
- rubygems_version: 2.6.8
155
+ rubygems_version: 2.6.11
155
156
  signing_key:
156
157
  specification_version: 4
157
158
  summary: RDF Graph normalizer for Ruby.