├── .github └── workflows │ ├── ci.yml │ └── generate-docs.yml ├── .gitignore ├── .yardopts ├── AUTHORS ├── CONTRIBUTING.md ├── CREDITS ├── Gemfile ├── README.md ├── Rakefile ├── UNLICENSE ├── VERSION ├── dependencyci.yml ├── doc └── .gitignore ├── etc ├── doap.html ├── doap.nt ├── doap.ttl └── doap.xml ├── lib └── rdf │ ├── raptor.rb │ └── raptor │ ├── cli.rb │ ├── ffi.rb │ ├── ffi │ ├── v1.rb │ ├── v1 │ │ ├── iostream.rb │ │ ├── iostream_handler.rb │ │ ├── parser.rb │ │ ├── serializer.rb │ │ ├── statement.rb │ │ └── uri.rb │ ├── v2.rb │ └── v2 │ │ ├── iostream.rb │ │ ├── iostream_handler.rb │ │ ├── namespace.rb │ │ ├── parser.rb │ │ ├── serializer.rb │ │ ├── statement.rb │ │ ├── term.rb │ │ ├── uri.rb │ │ └── world.rb │ ├── format.rb │ ├── graphviz.rb │ ├── ntriples.rb │ ├── rdfa.rb │ ├── rdfxml.rb │ ├── turtle.rb │ └── version.rb ├── memtest.rb ├── rdf-raptor.gemspec └── spec ├── format ├── graphviz_spec.rb ├── ntriples_spec.rb ├── rdfa_spec.rb ├── rdfxml_spec.rb └── turtle_spec.rb ├── raptor_cli_spec.rb ├── raptor_ffi_spec.rb ├── raptor_spec.rb ├── spec_helper.rb └── version_spec.rb /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/generate-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/.github/workflows/generate-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/.gitignore -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/.yardopts -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/CREDITS -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/Rakefile -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/UNLICENSE -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.3.0 2 | -------------------------------------------------------------------------------- /dependencyci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/dependencyci.yml -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | rdoc 2 | yard 3 | -------------------------------------------------------------------------------- /etc/doap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/etc/doap.html -------------------------------------------------------------------------------- /etc/doap.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/etc/doap.nt -------------------------------------------------------------------------------- /etc/doap.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/etc/doap.ttl -------------------------------------------------------------------------------- /etc/doap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/etc/doap.xml -------------------------------------------------------------------------------- /lib/rdf/raptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/cli.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v1.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v1/iostream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v1/iostream.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v1/iostream_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v1/iostream_handler.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v1/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v1/parser.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v1/serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v1/serializer.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v1/statement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v1/statement.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v1/uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v1/uri.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v2.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v2/iostream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v2/iostream.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v2/iostream_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v2/iostream_handler.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v2/namespace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v2/namespace.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v2/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v2/parser.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v2/serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v2/serializer.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v2/statement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v2/statement.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v2/term.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v2/term.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v2/uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v2/uri.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ffi/v2/world.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ffi/v2/world.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/format.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/graphviz.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/graphviz.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/ntriples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/ntriples.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/rdfa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/rdfa.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/rdfxml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/rdfxml.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/turtle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/turtle.rb -------------------------------------------------------------------------------- /lib/rdf/raptor/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/lib/rdf/raptor/version.rb -------------------------------------------------------------------------------- /memtest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/memtest.rb -------------------------------------------------------------------------------- /rdf-raptor.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/rdf-raptor.gemspec -------------------------------------------------------------------------------- /spec/format/graphviz_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/spec/format/graphviz_spec.rb -------------------------------------------------------------------------------- /spec/format/ntriples_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/spec/format/ntriples_spec.rb -------------------------------------------------------------------------------- /spec/format/rdfa_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/spec/format/rdfa_spec.rb -------------------------------------------------------------------------------- /spec/format/rdfxml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/spec/format/rdfxml_spec.rb -------------------------------------------------------------------------------- /spec/format/turtle_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/spec/format/turtle_spec.rb -------------------------------------------------------------------------------- /spec/raptor_cli_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/spec/raptor_cli_spec.rb -------------------------------------------------------------------------------- /spec/raptor_ffi_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/spec/raptor_ffi_spec.rb -------------------------------------------------------------------------------- /spec/raptor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/spec/raptor_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/rdf-raptor/HEAD/spec/version_spec.rb --------------------------------------------------------------------------------