gitextract_l60lvycr/ ├── .coveralls.yml ├── .fasterer.yml ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── generate-docs.yml ├── .gitignore ├── .rubocop.yml ├── .yardopts ├── AUTHORS ├── CONTRIBUTING.md ├── Gemfile ├── README.md ├── Rakefile ├── UNLICENSE ├── VERSION ├── bin/ │ └── jsonld ├── dependencyci.yml ├── earl.jsonld ├── etc/ │ ├── .earl │ ├── .gitignore │ ├── README │ ├── doap.jsonld │ ├── doap.nt │ ├── doap.ttl │ ├── earl-stream.ttl │ ├── earl.html │ ├── earl.jsonld │ ├── earl.ttl │ ├── manifests.nt │ ├── schema.org.jsonld │ └── template.haml ├── example-files/ │ ├── afs_prefix_flag.jsonld │ ├── arnaud-lang.rb │ ├── bench.rb │ ├── bob-star.jsonld │ ├── bug_framing/ │ │ ├── bug_framing.rb │ │ ├── input.nt │ │ └── output.jsonld │ ├── c14n.json │ ├── cog_.jsonld │ ├── earl-frame.jsonld │ ├── example-120.html │ ├── foaf.json │ ├── frame-title-frame.jsonld │ ├── frame-title.jsonld │ ├── framing-27-1.jsonld │ ├── framing-27-2.jsonld │ ├── gavin-big.jsonld │ ├── gm.ttl │ ├── graph-container-framing-expanded.jsonld │ ├── graph-container-framing-frame.jsonld │ ├── graph-container-framing-framed.jsonld │ ├── graph-container-framing-in.jsonld │ ├── identityProfile.jsonld │ ├── identityProfileFrame.jsonld │ ├── implicit-named-graph-example.jsonld │ ├── inverted-frame.jsonld │ ├── iri-resolution.jsonld │ ├── issue-46.html │ ├── issue-496.rb │ ├── issue-499-frame.json │ ├── issue-499.json │ ├── issue-507.rb │ ├── issue-526.jsonld │ ├── issue_30.jsonld │ ├── issue_30.rb │ ├── issue_30_frame.jsonld │ ├── library.jsonld │ ├── md-frame.jsonld │ ├── md-manifest.jsonld │ ├── md-manifest.ttl │ ├── mitar-in.jsonld │ ├── moustaki.ttl │ ├── nicholas-arduino-bench.rb │ ├── openbiblio.json │ ├── pendragon-2.jsonld │ ├── pendragon.jsonld │ ├── poe-context.jsonld │ ├── pr-509.jsonld │ ├── rdf.ttl │ ├── schema-context.jsonld │ ├── schema-context.rb │ ├── schema-heir.jsonld │ ├── schema-xform.rb │ ├── schema.org.jsonld │ ├── scoped-context.jsonld │ ├── shacl-severity-002-frame.jsonld │ ├── shacl-severity-002.jsonld │ ├── shex-expanded.jsonld │ ├── shex-framed.jsonld │ ├── shex-short.jsonld │ ├── star-wars.nq │ ├── toRdf-manifest.jsonld │ ├── vc1373-2.jsonld │ ├── vc1373.jsonld │ ├── w3c_events_context.jsonld │ ├── w3c_events_excerpt.json │ ├── wikia-CoD.jsonld │ ├── wikia.owl │ ├── wikidata.jsonld │ └── workergnome-issue-35.rb ├── json-ld.gemspec ├── lib/ │ └── json/ │ ├── ld/ │ │ ├── api.rb │ │ ├── compact.rb │ │ ├── conneg.rb │ │ ├── context.rb │ │ ├── expand.rb │ │ ├── extensions.rb │ │ ├── flatten.rb │ │ ├── format.rb │ │ ├── frame.rb │ │ ├── from_rdf.rb │ │ ├── html/ │ │ │ ├── nokogiri.rb │ │ │ └── rexml.rb │ │ ├── reader.rb │ │ ├── resource.rb │ │ ├── streaming_reader.rb │ │ ├── streaming_writer.rb │ │ ├── to_rdf.rb │ │ ├── utils.rb │ │ ├── version.rb │ │ └── writer.rb │ └── ld.rb ├── presentation/ │ ├── API/ │ │ ├── context.jsonld │ │ └── doc.jsonld │ ├── combined.jsonld │ ├── dave.jsonld │ ├── dbpedia/ │ │ ├── compact-context.jsonld │ │ ├── compacted.jsonld │ │ ├── expanded-context.jsonld │ │ ├── expanded.jsonld │ │ ├── frame.jsonld │ │ ├── framed.jsonld │ │ └── orig.jsonld │ ├── drupal/ │ │ ├── compacted.jsonld │ │ ├── context.jsonld │ │ ├── drupal.jsonld │ │ └── expanded.jsonld │ ├── gregg.jsonld │ ├── manu.jsonld │ └── markus.jsonld ├── profiler/ │ ├── .gitignore │ ├── all_data.json │ ├── linked-art.json │ └── test-loaders.rb ├── schema_org_rdfa.html ├── script/ │ ├── gen_context │ ├── parse │ └── tc └── spec/ ├── .gitignore ├── api_spec.rb ├── compact_spec.rb ├── conneg_spec.rb ├── context_spec.rb ├── expand_spec.rb ├── flatten_spec.rb ├── format_spec.rb ├── frame_spec.rb ├── from_rdf_spec.rb ├── matchers.rb ├── rdfstar_spec.rb ├── reader_spec.rb ├── resource_spec.rb ├── spec.opts ├── spec_helper.rb ├── streaming_reader_spec.rb ├── streaming_writer_spec.rb ├── suite_compact_spec.rb ├── suite_expand_spec.rb ├── suite_flatten_spec.rb ├── suite_frame_spec.rb ├── suite_from_rdf_spec.rb ├── suite_helper.rb ├── suite_html_spec.rb ├── suite_http_spec.rb ├── suite_remote_doc_spec.rb ├── suite_to_rdf_spec.rb ├── support/ │ └── extensions.rb ├── test-files/ │ ├── test-1-compacted.jsonld │ ├── test-1-context.jsonld │ ├── test-1-expanded.jsonld │ ├── test-1-input.jsonld │ ├── test-1-rdf.ttl │ ├── test-2-compacted.jsonld │ ├── test-2-context.jsonld │ ├── test-2-expanded.jsonld │ ├── test-2-input.jsonld │ ├── test-2-rdf.ttl │ ├── test-3-compacted.jsonld │ ├── test-3-context.jsonld │ ├── test-3-expanded.jsonld │ ├── test-3-input.jsonld │ ├── test-3-rdf.ttl │ ├── test-4-compacted.jsonld │ ├── test-4-context.jsonld │ ├── test-4-expanded.jsonld │ ├── test-4-input.jsonld │ ├── test-4-rdf.ttl │ ├── test-5-compacted.jsonld │ ├── test-5-context.jsonld │ ├── test-5-expanded.jsonld │ ├── test-5-input.jsonld │ ├── test-5-rdf.ttl │ ├── test-6-compacted.jsonld │ ├── test-6-context.jsonld │ ├── test-6-expanded.jsonld │ ├── test-6-input.jsonld │ ├── test-6-rdf.ttl │ ├── test-7-compacted.jsonld │ ├── test-7-context.jsonld │ ├── test-7-expanded.jsonld │ ├── test-7-input.jsonld │ ├── test-7-rdf.ttl │ ├── test-8-compacted.jsonld │ ├── test-8-context.jsonld │ ├── test-8-expanded.jsonld │ ├── test-8-frame.jsonld │ ├── test-8-framed.jsonld │ ├── test-8-input.jsonld │ ├── test-8-rdf.ttl │ ├── test-9-compacted.jsonld │ ├── test-9-context.jsonld │ ├── test-9-expanded.jsonld │ └── test-9-input.jsonld ├── to_rdf_spec.rb └── writer_spec.rb