File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -37,14 +37,14 @@ file "etc/manifests.nt" do
37
37
require 'json/ld'
38
38
require 'rdf/ntriples'
39
39
graph = RDF ::Graph . new do |g |
40
- %w( http ://json-ld.org/test-suite/tests/compact-manifest.jsonld
41
- http ://json-ld.org/test-suite/tests/error-manifest.jsonld
42
- http ://json-ld.org/test-suite/tests/expand-manifest.jsonld
43
- http ://json-ld.org/test-suite/tests/flatten-manifest.jsonld
44
- http ://json-ld.org/test-suite/tests/frame-manifest.jsonld
45
- http ://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld
46
- http ://json-ld.org/test-suite/tests/remote-doc-manifest.jsonld
47
- http ://json-ld.org/test-suite/tests/toRdf-manifest.jsonld
40
+ %w( https ://json-ld.org/test-suite/tests/compact-manifest.jsonld
41
+ https ://json-ld.org/test-suite/tests/error-manifest.jsonld
42
+ https ://json-ld.org/test-suite/tests/expand-manifest.jsonld
43
+ https ://json-ld.org/test-suite/tests/flatten-manifest.jsonld
44
+ https ://json-ld.org/test-suite/tests/frame-manifest.jsonld
45
+ https ://json-ld.org/test-suite/tests/fromRdf-manifest.jsonld
46
+ https ://json-ld.org/test-suite/tests/remote-doc-manifest.jsonld
47
+ https ://json-ld.org/test-suite/tests/toRdf-manifest.jsonld
48
48
) . each do |man |
49
49
puts "load #{ man } "
50
50
g . load ( man , unique_bnodes : true )
Original file line number Diff line number Diff line change 1
1
{
2
- "@context" : "http ://json-ld.org/test-suite/context.jsonld" ,
2
+ "@context" : "https ://json-ld.org/test-suite/context.jsonld" ,
3
3
"@id" : "" ,
4
4
"@type" : "jld:Manifest" ,
5
5
"rdfs:comment" : "JSON-LD to RDF tests generate N-Quads Output" ,
6
6
"name" : "toRdf" ,
7
- "baseIri" : "http ://json-ld.org/test-suite/tests/" ,
7
+ "baseIri" : "https ://json-ld.org/test-suite/tests/" ,
8
8
"sequence" : [
9
9
{
10
10
"@type" : [ "jld:PositiveEvaluationTest" , "jld:ToRDFTest" ] ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ module JSON::LD
19
19
# RDF::Format.file_extensions #=> {:jsonld => [JSON::LD::Format] }
20
20
#
21
21
# @see http://www.w3.org/TR/json-ld/
22
- # @see http ://json-ld.org/test-suite/
22
+ # @see https ://json-ld.org/test-suite/
23
23
class Format < RDF ::Format
24
24
content_type 'application/ld+json' ,
25
25
extension : :jsonld ,
Original file line number Diff line number Diff line change 5
5
# For now, override RDF::Utils::File.open_file to look for the file locally before attempting to retrieve it
6
6
module RDF ::Util
7
7
module File
8
- REMOTE_PATH = "http ://json-ld.org/test-suite/"
8
+ REMOTE_PATH = "https ://json-ld.org/test-suite/"
9
9
LOCAL_PATH = ::File . expand_path ( "../json-ld.org/test-suite" , __FILE__ ) + '/'
10
10
11
11
class << self
You can’t perform that action at this time.
0 commit comments