Sha256: 81818212729f7c98bafebaed885c74b926f15229ec2ea2d70fe4ab4fdbb1d7a9

Contents?: true

Size: 507 Bytes

Versions: 16

Compression:

Stored size: 507 Bytes

Contents

require 'bobot/engine'
require 'bobot/exceptions'
require 'bobot/error_parser'
require 'bobot/graph_facebook'
require 'bobot/configuration'
require 'bobot/profile'
require 'bobot/user'
require 'bobot/buttons'
require 'bobot/commander'
require 'bobot/event'
require 'bobot/page'

module Bobot
  def self.configure
    yield config
  end

  def self.config
    @config ||= Configuration.new
  end

  def self.config=(config)
    @config = config
  end

  configure do |config|
    config.pages = []
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
bobot-5.0.4 lib/bobot.rb
bobot-5.0.3 lib/bobot.rb
bobot-5.0.2 lib/bobot.rb
bobot-5.0.1 lib/bobot.rb
bobot-5.0.0 lib/bobot.rb
bobot-4.15.0 lib/bobot.rb
bobot-4.14.0 lib/bobot.rb
bobot-4.13.1 lib/bobot.rb
bobot-4.13.0 lib/bobot.rb
bobot-4.11.0 lib/bobot.rb
bobot-4.10.0 lib/bobot.rb
bobot-4.9.0 lib/bobot.rb
bobot-4.8.0 lib/bobot.rb
bobot-4.7.0 lib/bobot.rb
bobot-4.6.0 lib/bobot.rb
bobot-4.5.0 lib/bobot.rb