Sha256: ca55b96d541b2867e16a0a46328815409dd902a2fa2a7a894ce37842400b7457
Contents?: true
Size: 408 Bytes
Versions: 33
Compression:
Stored size: 408 Bytes
Contents
module FbGraph module Connections module Tabs def tabs(options = {}) tabs = self.connection(:tabs, options) tabs.map! do |tab| Tab.new(tab[:id], tab.merge( :access_token => options[:access_token] || self.access_token )) end end def tab!(options = {}) post options.merge(:connection => :tabs) end end end end
Version data entries
33 entries across 33 versions & 1 rubygems