Class: Nokogiri::XML::Document

Inherits:
Node
  • Object
show all
Defined in:
lib/oddb2xml/builder.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#tag_suffix=(value) ⇒ Object (writeonly)

Sets the attribute tag_suffix

Parameters:

  • value

    the value to set the attribute tag_suffix to.



15
16
17
# File 'lib/oddb2xml/builder.rb', line 15

def tag_suffix=(value)
  @tag_suffix = value
end

Instance Method Details

#create_element(name, *args, &block) ⇒ Object



17
18
19
20
# File 'lib/oddb2xml/builder.rb', line 17

def create_element name, *args, &block
  name += (@tag_suffix || '')
  create_element_origin(name, *args, &block)
end

#create_element_originObject



16
# File 'lib/oddb2xml/builder.rb', line 16

alias :create_element_origin :create_element