Skip to content

Commit 6397064

Browse files
committed
Version 1.1.5.
1 parent 24ff070 commit 6397064

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.4
1+
1.1.5

json-ld.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Gem::Specification.new do |gem|
2727

2828
gem.required_ruby_version = '>= 1.9.2'
2929
gem.requirements = []
30-
gem.add_runtime_dependency 'rdf', '~> 1.1'
30+
gem.add_runtime_dependency 'rdf', '~> 1.1', '>= 1.1.4'
3131
gem.add_development_dependency 'equivalent-xml' , '~> 0.4'
3232
gem.add_development_dependency 'open-uri-cached', '~> 0.0', '>= 0.0.5'
3333
gem.add_development_dependency 'yard' , '~> 0.8'

spec/to_rdf_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@id": "_:a",
3131
"http://example.com/foo": {"@id": "_:a"}
3232
}),
33-
%q(_:a <http://example.com/foo> _:a] .)
33+
%q(_:a <http://example.com/foo> _:a .)
3434
],
3535
}.each do |title, (js, ttl)|
3636
it title do
@@ -63,21 +63,21 @@
6363
"@id": "",
6464
"@type": "#{RDF::RDFS.Resource}"
6565
}),
66-
%(<http://example.org/> a <#{RDF::RDFS.Resource}>)
66+
%(<http://example.org/> a <#{RDF::RDFS.Resource}> .)
6767
],
6868
"relative" => [
6969
%({
7070
"@id": "a/b",
7171
"@type": "#{RDF::RDFS.Resource}"
7272
}),
73-
%(<http://example.org/a/b> a <#{RDF::RDFS.Resource}>)
73+
%(<http://example.org/a/b> a <#{RDF::RDFS.Resource}> .)
7474
],
7575
"hash" => [
7676
%({
7777
"@id": "#a",
7878
"@type": "#{RDF::RDFS.Resource}"
7979
}),
80-
%(<http://example.org/#a> a <#{RDF::RDFS.Resource}>)
80+
%(<http://example.org/#a> a <#{RDF::RDFS.Resource}> .)
8181
],
8282
}.each do |title, (js, ttl)|
8383
it title do

0 commit comments

Comments
 (0)