Sha256: 46a02ceff6e8d57514850ef82933e506c543b1ce26103347bdb51fc0ed85edc5
Contents?: true
Size: 606 Bytes
Versions: 59
Compression:
Stored size: 606 Bytes
Contents
module FbGraph module Connections module Checkins def checkins(options = {}) checkins = self.connection :checkins, options checkins.map! do |checkin| Checkin.new checkin[:id], checkin.merge( :access_token => options[:access_token] || self.access_token ) end end def checkin!(options = {}) checkin = post options.merge(:connection => :checkins) Checkin.new checkin[:id], options.merge(checkin).merge( :access_token => options[:access_token] || self.access_token ) end end end end
Version data entries
59 entries across 59 versions & 1 rubygems