Skip to content

Instantly share code, notes, and snippets.

@jcoyne
Created January 29, 2016 20:09
Show Gist options
  • Save jcoyne/8565741e1025c3cbec2d to your computer and use it in GitHub Desktop.
Save jcoyne/8565741e1025c3cbec2d to your computer and use it in GitHub Desktop.
class Collection < ActiveFedora::Base
include Hydra::Works::CollectionBehavior
property :title, predicate: ::RDF::DC.title, multiple: false
end
=> nil
irb(main):005:0> Collection.create(title: 'Test')
=> #<Collection id: "0b8e39f7-38e9-45aa-a8ca-596aaa139b41", head: [], tail: [], title: "Test">
irb(main):006:0> col = Collection.find('0b8e39f7-38e9-45aa-a8ca-596aaa139b41')
=> #<Collection id: "0b8e39f7-38e9-45aa-a8ca-596aaa139b41", head: [], tail: [], title: "Test">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment