# File lib/vagrant-libvirt/util/erb_template.rb, line 9
        def to_xml(template_name = nil, data = binding)
          erb = template_name || self.class.to_s.split('::').last.downcase
          path = File.join(File.dirname(__FILE__), '..', 'templates',
                           "#{erb}.xml.erb")
          template = File.read(path)

          # TODO: according to erubis documentation, we should rather use evaluate and forget about
          # binding since the template may then change variables values
          Erubis::Eruby.new(template, trim: true).result(data)
        end