lib/koala.rb in koala-1.5.0 vs lib/koala.rb in koala-1.6.0.rc1
- old
+ new
@@ -1,10 +1,11 @@
# useful tools
require 'digest/md5'
require 'multi_json'
# include koala modules
+require 'koala/errors'
require 'koala/api'
require 'koala/oauth'
require 'koala/realtime_updates'
require 'koala/test_users'
@@ -18,11 +19,9 @@
module Koala
# A Ruby client library for the Facebook Platform.
# See http://github.com/arsduo/koala/wiki for a general introduction to Koala
# and the Graph API.
- class KoalaError < StandardError; end
-
# Making HTTP requests
class << self
# Control which HTTP service framework Koala uses.
# Primarily used to switch between the mock-request framework used in testing
# and the live framework used in real life (and live testing).