Sha256: 699b0f4203d46ec54aec4bacdac1d7ac427c01e5cd64ce85cebc1435e4ffe752
Contents?: true
Size: 484 Bytes
Versions: 3
Compression:
Stored size: 484 Bytes
Contents
module Adparlor module Facebook class << self attr_accessor :configuration def configure self.configuration ||= Configuration.new yield configuration end end class Configuration attr_accessor :api_version attr_accessor :base_uri attr_accessor :proxy_api_key def initialize @api_version = 'v5.0' @base_uri = 'https://graph.facebook.com' @proxy_api_key = nil end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
adparlor-facebook-0.7.2 | lib/adparlor/facebook/config.rb |
adparlor-facebook-0.7.1 | lib/adparlor/facebook/config.rb |
adparlor-facebook-0.7.0 | lib/adparlor/facebook/config.rb |