forked from viseztrance/rails-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsitemap.gemspec
More file actions
24 lines (19 loc) · 890 Bytes
/
sitemap.gemspec
File metadata and controls
24 lines (19 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$LOAD_PATH << File.join(File.dirname(__FILE__), "lib")
spec = Gem::Specification.new do |spec|
spec.name = "sitemap"
spec.version = "0.2"
spec.summary = "Sitemap"
spec.description = "A simple ruby on rails sitemap generator"
spec.authors << "Daniel Mircea"
spec.email = "daniel@viseztrance.com"
spec.homepage = "http://github.com/viseztrance/rails-sitemap"
spec.add_development_dependency "sqlite3"
spec.add_development_dependency "nokogiri"
spec.files = Dir["{lib,docs}/**/*"] + ["README.rdoc", "LICENSE", "Rakefile", "sitemap.gemspec"]
spec.test_files = Dir["test/**/*"]
spec.require_paths = ["lib"]
spec.has_rdoc = true
spec.rdoc_options << "--main" << "README.rdoc" << "--title" << "Sitemap" << "--line-numbers"
"--webcvs" << "http://github.com/viseztrance/rails-sitemap"
spec.extra_rdoc_files = ["README.rdoc", "LICENSE"]
end