Resolved wildcards in PKG_FILES.
[ruby-vorbistagger.git] / gemspec.rb
1 s.platform = Gem::Platform::RUBY
2 s.name = "ruby-vorbistagger"
3 s.version = PKG_VERSION
4 s.summary = "Read-write interface to Vorbis comments/tags."
5 s.requirements << "libvorbis"
6 s.require_path = "lib"
7 s.files = PKG_FILES.to_a
8 s.description =<<EOT
9 ruby-vorbistagger provides a read-write interface to tags used in Ogg Vorbis files (known as vorbiscomments).
10 EOT
11
12 s.extensions << "Rakefile"
13
14 s.has_rdoc = true
15 s.rdoc_options = ["--title", rdoc.title, rdoc.options].flatten
16 s.extra_rdoc_files = rdoc.rdoc_files
17
18 s.test_files = Dir.glob(test.pattern)
19
20 s.author = "Tilman Sauerbeck"
21 s.email = "tilman@code-monkey.de"
22 s.homepage = "http://code-monkey.de/pages/ruby-vorbistagger"
23
24 if ENV["GEM_CERT_DIR"]
25         s.signing_key = File.join(ENV["GEM_CERT_DIR"],
26                                   "gem-private_key.pem")
27         s.cert_chain = [File.join(ENV["GEM_CERT_DIR"],
28                                   "gem-public_cert.pem")]
29 end