Sha256: d275419baed5e230de5da1e534edef7a3cfe751ebab6ea66f89abe451cfb1c2e

Contents?: true

Size: 975 Bytes

Versions: 8

Compression:

Stored size: 975 Bytes

Contents

SitemapGenerator::Sitemap.default_host = "http://www.example.com"
SitemapGenerator::Sitemap.create(
    :include_root => true, :include_index => true,
    :filename => :new_sitemaps, :sitemaps_path => 'fr/') do

  add('/one', :priority => 0.7, :changefreq => 'daily')

  # Test a new location and filename and sitemaps host
  group(:sitemaps_path => 'en/', :filename => :xxx,
      :sitemaps_host => "http://newhost.com") do

    add '/two'
    add '/three'
  end

  # Test a namer
  group(:sitemaps_namer => SitemapGenerator::SitemapNamer.new(:abc, :start => 3)) do
    add '/four'
    add '/five'
    add '/six'
  end

  add '/seven'

  # This should be in a file of its own
  group(:sitemaps_host => "http://exceptional.com") do
    add '/eight'
    add '/nine'
  end

  add '/ten'

  # This should have no effect.  Already added default links.
  group(:include_root => true, :include_index => true) {}

  add "/merchant_path", :host => "https://www.merchanthost.com"
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
sitemap_generator-4.0.alpha spec/files/sitemap.groups.rb
sitemap_generator-3.4 spec/files/sitemap.groups.rb
sitemap_generator-3.3 spec/files/sitemap.groups.rb
sitemap_generator-3.2.1 spec/files/sitemap.groups.rb
sitemap_generator-3.2 spec/files/sitemap.groups.rb
sitemap_generator-3.1.1 spec/files/sitemap.groups.rb
sitemap_generator-3.1.0 spec/files/sitemap.groups.rb
sitemap_generator-3.0.0 spec/files/sitemap.groups.rb