public
Description: Rails Sitemap Plugin / Site Map Plugin for Rails. A beautiful rails sitemap plugin that talks to Google, Yahoo and MSN when updated. Sitemap features clean handcrafted XHTML, XML with XSLT and custom finder options for your named routes.
Clone URL: git://github.com/queso/sitemap.git
Search Repo:
sitemap / lib / sitemaps_helper.rb
100755 10 lines (8 sloc) 0.154 kb
1
2
3
4
5
6
7
8
9
10
module SitemapsHelper
  
  def w3c_date(date)
     date.utc.strftime("%Y-%m-%dT%H:%M:%S+00:00")
  end
  
  def copyright_date
    Time.now.year
  end
end