Sha256: bbf54482aea53cc1482c8d5f69b189425a78e729a9c12618f15ab20c51b7b1ff

Contents?: true

Size: 799 Bytes

Versions: 10

Compression:

Stored size: 799 Bytes

Contents

# Set the host name for URL creation
SitemapGenerator::Sitemap.default_host = 'http://www.example.com'

SitemapGenerator::Sitemap.create do
  # Put links creation logic here.
  #
  # The root path '/' and sitemap index file are added automatically for you.
  # Links are added to the Sitemap in the order they are specified.
  #
  # Usage: add(path, options={})
  #        (default options are used if you don't specify)
  #
  # Defaults: :priority => 0.5, :changefreq => 'weekly',
  #           :lastmod => Time.now, :host => default_host
  #
  # Examples:
  #
  # Add '/articles'
  #
  #   add articles_path, :priority => 0.7, :changefreq => 'daily'
  #
  # Add all articles:
  #
  #   Article.find_each do |article|
  #     add article_path(article), :lastmod => article.updated_at
  #   end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
keppler-2.0.7 installer/core/config/sitemap.rb
keppler-2.0.6 installer/core/config/sitemap.rb
keppler-2.0.5 installer/core/config/sitemap.rb
keppler-2.0.4.p1 installer/core/config/sitemap.rb
keppler-2.0.4.pre.p1 installer/core/config/sitemap.rb
keppler-2.0.4 installer/core/config/sitemap.rb
keppler-2.0.3 installer/core/config/sitemap.rb
keppler-2.0.2 installer/core/config/sitemap.rb
keppler-2.0.1 installer/core/config/sitemap.rb
keppler-2.0.0 installer/core/config/sitemap.rb