public
Description: Ruby library for reading/writing vorbis comments
Homepage: http://code.jeremyevans.net/doc/ruby-vorbis_comment/
Clone URL: git://github.com/jeremyevans/ruby-vorbis_comment.git
ruby-vorbis_comment / vorbis_comment.gemspec
100644 19 lines (18 sloc) 0.625 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
spec = Gem::Specification.new do |s|
  s.name = "vorbis_comment"
  s.version = "1.0.0"
  s.author = "Jeremy Evans"
  s.email = "code@jeremyevans.net"
  s.homepage = "http://rubyforge.org/projects/vorbiscomment/"
  s.platform = Gem::Platform::RUBY
  s.summary = "Vorbis Comment Reader/Writer Library"
  s.files = Dir["*"]
  s.require_paths = ["."]
  s.extensions << 'extconf.rb'
  s.test_files = Dir["test/*"]
  s.has_rdoc = true
  s.rdoc_options = %w'--inline-source --line-numbers'
s.add_dependency('cicphash', [">= 1.0.0"])
s.rubyforge_project = 'vorbiscomment'
s.homepage = 'http://vorbiscomment.rubyforge.org'
end