Class: XmlGenerator
Overview
:nodoc:
Direct Known Subclasses
Instance Attribute Summary collapse
-
#xml ⇒ Object
readonly
Returns the value of attribute xml.
Instance Method Summary collapse
-
#initialize ⇒ XmlGenerator
constructor
A new instance of XmlGenerator.
Methods inherited from String
#previous, #previous!, #remove_extended, #remove_extended!, #tap, #to_header, #underscore, #valid_utf8?
Constructor Details
#initialize ⇒ XmlGenerator
Returns a new instance of XmlGenerator.
398 399 400 401 402 |
# File 'lib/aliyun/oss/extensions.rb', line 398 def initialize @xml = Builder::XmlMarkup.new(:indent => 2, :target => self) super() build end |
Instance Attribute Details
#xml ⇒ Object (readonly)
Returns the value of attribute xml.
397 398 399 |
# File 'lib/aliyun/oss/extensions.rb', line 397 def xml @xml end |