lib/blather.rb in blather-0.2 vs lib/blather.rb in blather-0.2.1
- old
+ new
@@ -1,19 +1,22 @@
$:.unshift File.dirname(__FILE__)
+# Require the necessary files
%w[
rubygems
xml/libxml
eventmachine
digest/md5
logger
+ blather/core_ext/active_support
+ blather/core_ext/libxml
+
blather/errors
blather/jid
blather/roster
blather/roster_item
- blather/sugar
blather/xmpp_node
blather/stanza
blather/stanza/error
blather/stanza/iq
@@ -34,9 +37,11 @@
XML.indent_tree_output = false
module Blather
LOG = Logger.new(STDOUT)
+ Stream::Parser.debug = true
+# LOG.level = Logger::INFO
class Client
attr_accessor :jid,
:roster
\ No newline at end of file