mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
14 lines
266 B
Ruby
14 lines
266 B
Ruby
|
module Fog
|
||
|
module XML
|
||
|
class Connection < SAXParserConnection
|
||
|
def request(params, &block)
|
||
|
if (parser = params.delete(:parser))
|
||
|
super(parser, params)
|
||
|
else
|
||
|
original_request(params)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|