1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.summary = "Simple gem used to test docs file generation."
s.name = 'simpledocs'
s.version = '0.0.1'
s.requirements << 'none'
s.require_path = 'lib'
s.author = 'Debian Ruby Team'
s.email = 'pkg-ruby-extras-maintainers@lists.alioth.debian.org'
s.homepage = 'https://wiki.debian.org/Teams/Ruby'
s.license = 'GPL-3+'
#s.autorequire = 'rake'
s.files = Dir.glob('lib/**')
s.extra_rdoc_files = Dir["doc/*", "README.md", "CONTRIBUTORS.md"]
s.description = <<EOF
simpledocs is a simple gem that is used to test docs file generation.
EOF
end
|