This is a ruby implementation of LDPath, a language for selecting values linked data resources.
Add this line to your application's Gemfile:
gem 'ldpath'
And then execute:
$ bundle
Or install it yourself as:
$ gem install ldpath
require 'ldpath'
my_program = <<-EOF
@prefix dcterms : <http://purl.org/dc/terms/> ;
title = dcterms:title :: xsd:string ;
EOF
uri = RDF::URI.new "info:a"
context = RDF::Graph.new << [uri, RDF::Vocab::DC.title, "Some Title"]
program = Ldpath::Program.parse my_program
output = program.evaluate uri, context: context
# => { ... }
- Ruby 2.5 or the latest 2.4 version is recommended. Later versions may also work.
LDPath is moving toward being a Core Component of the Samvera community. The documentation for what this means can be found here.
The Samvera community is here to help. Please see our support guide.
This software has been developed by and is brought to you by the Samvera community. Learn more at the Samvera website.
Chris Beer for the initial implementation of this gem!