Slide 44
Slide 44 text
class Author
extend ActiveSupport::Autoload
include Guacamole::Model
!
autoload :Book, 'models/book'
!
attribute :name, String
attribute :books, Array[Book]
end
class Book
extend ActiveSupport::Autoload
include Guacamole::Model
!
autoload :Author, 'models/author'
!
attribute :title, String
attribute :author, Author
end
This is not
very Ruby