Sha256: e62ad8d653d34c7b384747c78e99bc4c1973d6375499412d0424c1087d2cb0a7

Contents?: true

Size: 263 Bytes

Versions: 3

Compression:

Stored size: 263 Bytes

Contents

module FbGraph2
  class Edge
    module Albums
      def albums(params = {})
        albums = self.edge :albums, params
        albums.collect do |album|
          Album.new(album[:id], album).authenticate self.access_token
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fb_graph2-0.0.4 lib/fb_graph2/edge/albums.rb
fb_graph2-0.0.3 lib/fb_graph2/edge/albums.rb
fb_graph2-0.0.2 lib/fb_graph2/edge/albums.rb