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.



8
9
10
# File 'lib/oddb2xml/builder.rb', line 8

def tag_suffix=(value)
  @tag_suffix = value
end

Instance Method Details

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



10
11
12
13
# File 'lib/oddb2xml/builder.rb', line 10

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

#create_element_originObject



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

alias :create_element_origin :create_element