Sha256: be64f5567356440adc7e7b3c78fa3dc718562d185a187db3ac159d347157d7e2

Contents?: true

Size: 587 Bytes

Versions: 1

Compression:

Stored size: 587 Bytes

Contents

= Sitemap

A simple ruby on rails sitemap generator.

== Usage

Create a sitemap.rb file in your config directory. Paths can be indexed as follows:

  Sitemap.instance.render :host => "mywebsite.com" do
    path :root, :priority => 1
    path :faq, :priority => 0.5, :change_frequency => "weekly"
    resources :activities, :format => "html"
    resources :articles, :objects => proc { Article.published }
  end

Please read the docs for a more comprehensive list of options.

== License

This package is licensed under the MIT license and/or the Creative
Commons Attribution-ShareAlike.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sitemap-0.1b README.rdoc