jrgriffiniii / ldp

Linked Data Platform.rb client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ldp.rb

Code: Build Status Version Coverage Status

Docs: Contribution Guidelines Apache 2.0 License

Jump In: Slack Status

What is ldp?

Linked Data Platform client library for Ruby

Product Owner & Maintenance

ldp is a Core Component of the Samvera community. The documentation for what this means can be found here.

Product Owner

randalldfloyd

Help

The Samvera community is here to help. Please see our support guide.

Installation

Add this line to your application's Gemfile:

gem 'ldp'

And then execute:

$ bundle

Or install it yourself as:

$ gem install ldp

Usage

host = 'http://localhost:8080'
client = Ldp::Client.new(host)
resource = Ldp::Resource.new(client, host + '/rest/node/to/update')
orm = Ldp::Orm.new(resource)

# view the current title(s)
orm.orm.value(RDF::DC11.title)

# update the title
orm.graph.delete([orm.resource.subject_uri, RDF::DC11.title, nil])
orm.graph.insert([orm.resource.subject_uri, RDF::DC11.title, 'a new title'])

# save changes
orm.save

Acknowledgments

This software has been developed by and is brought to you by the Samvera community. Learn more at the Samvera website

Samvera Logo

About

Linked Data Platform.rb client

License:Other


Languages

Language:Ruby 100.0%