How to factorize common tags with nokogiri builder ?
- by plafoucriere
Hi,
I'd like to create several builders, with common tags, in order to have xml docs like :
<xml version="1.0"?>
<a_kind_of_root>
<!-- This part is common -->
<event_date>20100514</event_date>
<event_id>123</event_id>
<event_type>Conference</event_type>
<!-- This part is specific to the builder -->
<my_tag>some text</my_tag>
</a_kind_of_root>
</xml>
<xml version="1.0"?>
<another_kind_of_root>
<!-- This part is common -->
<event_date>20100514</event_date>
<event_id>123</event_id>
<event_type>Conference</event_type>
<!-- This part is specific to the builder -->
<my_other_tag>some integer</my_other_tag>
</another_kind_of_root>
</xml>
I don't know how to put the common part inside a Nokogiri::XML::Builder
Thanks