module SitemapGen
Constants
- IGNORE_DIRS_REGEX
- VERSION
Public Class Methods
crawl_xml(xml_path, save_path)
click to toggle source
# File lib/sitemap_gen.rb, line 21 def self.crawl_xml(xml_path, save_path) XMLCrawler.execute(xml_path, save_path) end
fix(dir_path)
click to toggle source
# File lib/sitemap_gen.rb, line 17 def self.fix(dir_path) Fixer.new(dir_path).execute end
generate(dir_path, base_url, save_path = nil, checking_url = false)
click to toggle source
# File lib/sitemap_gen.rb, line 13 def self.generate(dir_path, base_url, save_path = nil, checking_url = false) CSV.new(dir_path, base_url, save_path, checking_url).execute end