Module: FbGraph::Connections::Books

Included in:
User
Defined in:
lib/fb_graph/connections/books.rb

Instance Method Summary collapse

Instance Method Details

#books(options = {}) ⇒ Object



4
5
6
7
8
9
# File 'lib/fb_graph/connections/books.rb', line 4

def books(options = {})
  books = FbGraph::Collection.new(get(options.merge(:connection => 'books')))
  books.map! do |book|
    Page.new(book.delete(:id), book)
  end
end