Sha256: e3e46c44129f3197e7d5ca64e3796aa5aec191f2f8a29d0eec5762b8a4690857

Contents?: true

Size: 938 Bytes

Versions: 2

Compression:

Stored size: 938 Bytes

Contents

module XmlSitemap
  PERIODS = [
    :none,
    :always,
    :hourly,
    :daily,
    :weekly,
    :monthly,
    :yearly,
    :never
  ].freeze

  MAP_SCHEMA_OPTIONS = {
    'xsi:schemaLocation' => "http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd",
    'xmlns:xsi'          => "http://www.w3.org/2001/XMLSchema-instance",
    'xmlns:image'        => "http://www.google.com/schemas/sitemap-image/1.1",
    'xmlns:video'        => "http://www.google.com/schemas/sitemap-video/1.1",
    'xmlns'              => "http://www.sitemaps.org/schemas/sitemap/0.9"
  }.freeze

  INDEX_SCHEMA_OPTIONS = {
    'xsi:schemaLocation' => "http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/siteindex.xsd",
    'xmlns:xsi'          => "http://www.w3.org/2001/XMLSchema-instance",
    'xmlns'              => "http://www.sitemaps.org/schemas/sitemap/0.9"
  }.freeze
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
xml-sitemap-1.3.3 lib/xml-sitemap/options.rb
xml-sitemap-1.3.2 lib/xml-sitemap/options.rb