lib/fog/xml.rb in fog-1.22.1 vs lib/fog/xml.rb in fog-1.23.0
- old
+ new
@@ -1,28 +1,4 @@
require "nokogiri"
require "fog/core/parser"
require "fog/xml/sax_parser_connection"
-
-module Fog
- # @note Extracting XML components out of core is a work in progress.
- #
- # The {XML} module includes functionality that is common between APIs using
- # XML to send and receive data.
- #
- # The intent is to provide common code for provider APIs using XML but not
- # require it for those using JSON.
- #
- # @todo Add +require "fog/xml"+ and/or +include Fog::XML+ to providers using
- # its services
- #
- module XML
- class Connection < Fog::XML::SAXParserConnection
- def request(params, &block)
- if (parser = params.delete(:parser))
- super(parser, params)
- else
- original_request(params)
- end
- end
- end
- end
-end
+require "fog/xml/connection"