File: xml.rb

package info (click to toggle)
ruby-fog-xml 0.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 204 kB
  • sloc: ruby: 371; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 533 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "fog/core"
require "nokogiri"
require File.expand_path("../xml/version", __FILE__)

module Fog
  autoload :ToHashDocument, File.expand_path("../to_hash_document", __FILE__)

  module XML
    autoload :SAXParserConnection, File.expand_path("../xml/sax_parser_connection", __FILE__)
    autoload :Connection, File.expand_path("../xml/connection", __FILE__)
    autoload :Response, File.expand_path("../xml/response", __FILE__)
  end

  module Parsers
    autoload :Base, File.expand_path("../parsers/base", __FILE__)
  end
end