Sha256: 92a617c9de16309ea6f5fc5cd3542e1d18fb83a01fd4d168f0e85fb252b36b01
Contents?: true
Size: 776 Bytes
Versions: 26
Compression:
Stored size: 776 Bytes
Contents
xml.instruct! xml.urlset "xmlns" => "http://www.sitemaps.org/schemas/sitemap/0.9" do # homepage xml.url do xml.loc root_path(:only_path => false) #w3c formatted time time = Noodall::GlobalUpdateTime::Stamp.read xml.lastmod "#{time.strftime("%Y-%m-%dT%H:%M:%S")}#{time.strftime("%z")[0..2]}:#{time.strftime("%z")[3..4]}" xml.changefreq "daily" xml.priority 1 end # nodes @nodes.each do |node| xml.url do xml.loc node_path(node,:only_path => false) #w3c formatted time time = node.updated_at xml.lastmod "#{time.strftime("%Y-%m-%dT%H:%M:%S")}#{time.strftime("%z")[0..2]}:#{time.strftime("%z")[3..4]}" xml.changefreq "daily" xml.priority 1 end end end
Version data entries
26 entries across 26 versions & 1 rubygems