Sha256: 780204528783b248fadd517a298757a4ca91cca3e9eb64a7abc28bd0c04d9cc0

Contents?: true

Size: 435 Bytes

Versions: 34

Compression:

Stored size: 435 Bytes

Contents

module FbGraph2
  class Edge
    module Offers
      def offers(params = {})
        offers = self.edge :offers, params
        offers.collect! do |offer|
          Offer.new(offer[:id], offer).authenticate self.access_token
        end
      end

      def offer!(params = {})
        offer = self.post params, edge: :offers
        Offer.new(offer[:id], params.merge(offer)).authenticate self.access_token
      end
    end
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
fb_graph2-1.3.0 lib/fb_graph2/edge/offers.rb
fb_graph2-1.2.0 lib/fb_graph2/edge/offers.rb
fb_graph2-1.1.1 lib/fb_graph2/edge/offers.rb
fb_graph2-1.1.0 lib/fb_graph2/edge/offers.rb
fb_graph2-1.0.1 lib/fb_graph2/edge/offers.rb
fb_graph2-1.0.0 lib/fb_graph2/edge/offers.rb
fb_graph2-0.9.1 lib/fb_graph2/edge/offers.rb
fb_graph2-0.9.0 lib/fb_graph2/edge/offers.rb
fb_graph2-0.8.0 lib/fb_graph2/edge/offers.rb
fb_graph2-0.7.9 lib/fb_graph2/edge/offers.rb
fb_graph2-0.7.8 lib/fb_graph2/edge/offers.rb
fb_graph2-0.7.7 lib/fb_graph2/edge/offers.rb
fb_graph2-0.7.6 lib/fb_graph2/edge/offers.rb
fb_graph2-0.7.5 lib/fb_graph2/edge/offers.rb
fb_graph2-0.7.4 lib/fb_graph2/edge/offers.rb
fb_graph2-0.7.3 lib/fb_graph2/edge/offers.rb
fb_graph2-0.7.2 lib/fb_graph2/edge/offers.rb
fb_graph2-0.7.1 lib/fb_graph2/edge/offers.rb
fb_graph2-0.7.0 lib/fb_graph2/edge/offers.rb
fb_graph2-0.6.2 lib/fb_graph2/edge/offers.rb