forked from kjvarga/sitemap_generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsitemap_generator.gemspec
More file actions
16 lines (15 loc) · 833 Bytes
/
sitemap_generator.gemspec
File metadata and controls
16 lines (15 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# encoding: utf-8
Gem::Specification.new do |s|
s.name = 'sitemap_generator'
s.version = File.read('VERSION').chomp
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.6'
s.authors = ['Karl Varga']
s.email = 'kjvarga@gmail.com'
s.homepage = 'https://github.com/kjvarga/sitemap_generator'
s.summary = 'Easily generate XML Sitemaps'
s.description = 'SitemapGenerator is a framework-agnostic XML Sitemap generator written in Ruby with automatic Rails integration. It supports Video, News, Image, Mobile, PageMap and Alternate Links sitemap extensions and includes Rake tasks for managing your sitemaps, as well as many other great features.'
s.license = 'MIT'
s.add_dependency 'builder', '~> 3.0'
s.files = Dir.glob('{lib,rails,templates}/**/*') + %w[CHANGES.md MIT-LICENSE README.md VERSION]
end