Guest User

Untitled

a guest
May 20th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. require 'app/models/entries'
  2. class Feed < Ohm::Model
  3. attribute :title
  4. attribute :subtitle
  5. collection :entries, Entry
  6.  
  7. index :href
  8. end
  9.  
  10. class Entry < Ohm::Model
  11. attribute :title
  12. attribute :url
  13. index :published
  14.  
  15. end
Add Comment
Please, Sign In to add comment