Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions lib/fog/xml.rb
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
require "fog/xml/version"
require "fog/core"
require "nokogiri"
require File.expand_path("../xml/version", __FILE__)

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

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

module Parsers
autoload :Base, "fog/parsers/base"
autoload :Base, File.expand_path("../parsers/base", __FILE__)
end
end
2 changes: 0 additions & 2 deletions lib/fog/xml/sax_parser_connection.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
require "fog/core/connection"

module Fog
module XML
class SAXParserConnection < ::Fog::Core::Connection
Expand Down