├── .github └── workflows │ ├── ci.yml │ └── generate-docs.yml ├── .gitignore ├── .yardopts ├── AUTHORS ├── CONTRIBUTING.md ├── CREDITS ├── Gemfile ├── README.md ├── Rakefile ├── UNLICENSE ├── VERSION ├── etc └── Gemfile ├── lib └── linkeddata.rb ├── linkeddata.gemspec └── spec ├── linkeddata_spec.rb └── spec_helper.rb /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/generate-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/.github/workflows/generate-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/.gitignore -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/.yardopts -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/Rakefile -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/UNLICENSE -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.3.3 2 | -------------------------------------------------------------------------------- /etc/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/etc/Gemfile -------------------------------------------------------------------------------- /lib/linkeddata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/lib/linkeddata.rb -------------------------------------------------------------------------------- /linkeddata.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/linkeddata.gemspec -------------------------------------------------------------------------------- /spec/linkeddata_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/spec/linkeddata_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby-rdf/linkeddata/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------