Sha256: d62eb3c7104f003414d6254f8a0ae57b3f9a0e1b68a12f2eceac947f46d7628e

Contents?: true

Size: 784 Bytes

Versions: 1

Compression:

Stored size: 784 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'              => "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

1 entries across 1 versions & 1 rubygems

Version Path
xml-sitemap-1.2.2 lib/xml-sitemap/options.rb