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