require "brandspotter/version" require "rubygems" require "rest-client" require "json" require File.expand_path('../misc/hash.rb', __FILE__) require File.expand_path('../brandspotter/client.rb', __FILE__) module Brandspotter class << self attr_accessor :configuration end def self.configure self.configuration ||= Configuration.new yield(configuration) end class Configuration attr_accessor :user_token end end