Sha256: 0801cf87ae59c68dad5f9aa057325a1e1f3aac4ea6be171a0be75dadbb2c5a8d
Contents?: true
Size: 564 Bytes
Versions: 38
Compression:
Stored size: 564 Bytes
Contents
module FbGraph module Connections module Outbox def outbox(options = {}) threads = self.connection :outbox, options threads.map! do |thread| if thread[:comments] Thread::BeforeTransition.new thread[:id], thread.merge( :access_token => options[:access_token] || self.access_token ) else Thread.new thread[:id], thread.merge( :access_token => options[:access_token] || self.access_token ) end end end end end end
Version data entries
38 entries across 38 versions & 1 rubygems