Sha256: 30fc82c83837fd2fadf04f939fa1c39d4e8329b8e327a0af13eaa0d7e7623060

Contents?: true

Size: 254 Bytes

Versions: 11

Compression:

Stored size: 254 Bytes

Contents

module FbGraph2
  class Edge
    module Posts
      def posts(params = {})
        posts = self.edge :posts, 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/posts.rb
fb_graph2-0.0.11 lib/fb_graph2/edge/posts.rb
fb_graph2-0.0.10 lib/fb_graph2/edge/posts.rb
fb_graph2-0.0.9 lib/fb_graph2/edge/posts.rb
fb_graph2-0.0.8 lib/fb_graph2/edge/posts.rb
fb_graph2-0.0.7 lib/fb_graph2/edge/posts.rb
fb_graph2-0.0.6 lib/fb_graph2/edge/posts.rb
fb_graph2-0.0.5 lib/fb_graph2/edge/posts.rb
fb_graph2-0.0.4 lib/fb_graph2/edge/posts.rb
fb_graph2-0.0.3 lib/fb_graph2/edge/posts.rb
fb_graph2-0.0.2 lib/fb_graph2/edge/posts.rb