Sha256: 2de747966ff3be9408a1dca299491199d85348260ca262ca5e601ce4a8792f10

Contents?: true

Size: 1.01 KB

Versions: 4

Compression:

Stored size: 1.01 KB

Contents

# Require the necessary files
%w[
  rubygems
  eventmachine
  ext/push_parser
  xml/libxml
  digest/md5
  logger

  blather/core_ext/active_support
  blather/core_ext/libxml

  blather/errors
  blather/errors/sasl_error
  blather/errors/stanza_error
  blather/errors/stream_error
  blather/jid
  blather/roster
  blather/roster_item
  blather/xmpp_node

  blather/stanza
  blather/stanza/iq
  blather/stanza/iq/query
  blather/stanza/iq/roster
  blather/stanza/disco
  blather/stanza/disco/disco_info
  blather/stanza/disco/disco_items
  blather/stanza/message
  blather/stanza/presence
  blather/stanza/presence/status
  blather/stanza/presence/subscription

  blather/stream
  blather/stream/client
  blather/stream/component
  blather/stream/stream_handler
  blather/stream/parser
  blather/stream/resource
  blather/stream/sasl
  blather/stream/session
  blather/stream/tls
].each { |r| require r }

XML.indent_tree_output = false

module Blather
  LOG = Logger.new($stdout) unless const_defined?(:LOG)
  LOG.level = Logger::INFO
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
sprsquish-blather-0.3.1 lib/blather.rb
sprsquish-blather-0.3.2 lib/blather.rb
blather-0.3.1 lib/blather.rb
blather-0.3.2 lib/blather.rb