Skip to content

Instantly share code, notes, and snippets.

header
.row.nav-header
.container
.nav-header__logo
img src="/"
nav.nav-header__menu
.barra-scroll
.container
nav.nav-header
ul
li
a.bt-menu href="#"
i.fa.fa-bars
| MENU
li
form.form-search
require "rexml/document"
doc = REXML::Document.new File.read("#{Rails.root}/app/views/xml/alunos.xml")
doc = REXML::Document.new File.open(File.dirname(__FILE__) + '/alunos.xml')
doc.elements.each("alunos/aluno") do |i|
puts "#{i.elements['nome'].text}"
end