Sha256: b59824dcaab9e972372f20d401a10182a3219a8707ace6aa862c78a158e77fb5
Contents?: true
Size: 326 Bytes
Versions: 59
Compression:
Stored size: 326 Bytes
Contents
module FbGraph module Connections module Posts def posts(options = {}) posts = self.connection :posts, options posts.map! do |post| Post.new post[:id], post.merge( :access_token => options[:access_token] || self.access_token ) end end end end end
Version data entries
59 entries across 59 versions & 1 rubygems