Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. authors = Author.includes(:published_books)
  2.  
  3. authors.map do |author|
  4. {
  5. author: author.name,
  6. books: author.published_books.map(&:name)
  7. }
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement