-
Notifications
You must be signed in to change notification settings - Fork 34
/
big_sitemap.gemspec
20 lines (18 loc) · 1.2 KB
/
big_sitemap.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "big_sitemap"
s.version = File.read('VERSION').strip
s.authors = ["Alex Rabarts", "Tobias Bielohlawek"]
s.email = ["alexrabarts@gmail.com", "tobi@soundcloud.com"]
s.homepage = %q{http://github.com/alexrabarts/big_sitemap}
s.summary = %q{A Sitemap generator specifically designed for large sites (although it works equally well with small sites)}
s.description = %q{BigSitemap is a Sitemapgenerator suitable for applications with greater than 50,000 URLs. It splits large Sitemaps into multiple files, gzips the files to minimize bandwidth usage, batches database queries to minimize memory usage, supports increment updates, can be set up with just a few lines of code and is compatible with just about any framework.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
%w{bundler shoulda mocha nokogiri}.each do |gem|
s.add_development_dependency *gem.split(' ')
end
end