Created
January 29, 2016 20:09
-
-
Save jcoyne/8565741e1025c3cbec2d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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