Sha256: c763d7eb0de61b5c9d999e8e6a9546781be9bd1770ed189235d6d70486ee2bfe

Contents?: true

Size: 254 Bytes

Versions: 11

Compression:

Stored size: 254 Bytes

Contents

module FbGraph2
  class Edge
    module Links
      def links(params = {})
        posts = self.edge :links, params
        posts.collect do |post|
          Post.new(post[:id], post).authenticate self.access_token
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
fb_graph2-0.1.0 lib/fb_graph2/edge/links.rb
fb_graph2-0.0.11 lib/fb_graph2/edge/links.rb
fb_graph2-0.0.10 lib/fb_graph2/edge/links.rb
fb_graph2-0.0.9 lib/fb_graph2/edge/links.rb
fb_graph2-0.0.8 lib/fb_graph2/edge/links.rb
fb_graph2-0.0.7 lib/fb_graph2/edge/links.rb
fb_graph2-0.0.6 lib/fb_graph2/edge/links.rb
fb_graph2-0.0.5 lib/fb_graph2/edge/links.rb
fb_graph2-0.0.4 lib/fb_graph2/edge/links.rb
fb_graph2-0.0.3 lib/fb_graph2/edge/links.rb
fb_graph2-0.0.2 lib/fb_graph2/edge/links.rb