-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathid3.gemspec
25 lines (23 loc) · 1.07 KB
/
id3.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
spec = Gem::Specification.new do |s|
s.name = 'id3'
s.version = '0.5.1'
s.author = 'Tilo Sloboda'
s.email = '[email protected]'
s.homepage = 'http://www.unixgods.org/~tilo/Ruby/ID3'
s.platform = Gem::Platform::RUBY
s.summary = 'A native ID3 tag library for Ruby, which does not depend on architecture-dependent C-libraries. It supports reading and writing ID3-tag versions 1.0, 1.1, and 2.2.x, 2,3.x, 2,4.x\n http://www.unixgods.org/~tilo/Ruby/ID3'
s.description = 'ID3 is a native ruby library for reading and writing ID3 tag versions 1.0, 1.1, and 2.2.x, 2,3.x, 2,4.x'
s.files = Dir['docs/**/*'] + Dir['lib/*.rb'] + ['LICENSE.html' , 'index.html', 'README' , 'CHANGES']
# s.test_files = FileList["{tests}/**/*test.rb"].to_a
s.has_rdoc = false
s.require_path = 'lib'
s.autorequire = 'id3'
# s.extra_rdoc_files = ['README']
s.rdoc_options << '--title' << 'Builder -- Easy XML Building'
# s.add_dependency("dependency", ">= 0.9.9")
# s.bindir = 'bin'
s.rubyforge_project = 'id3'
end
#Rake::GemPackageTask.new(spec) do |pkg|
# pkg.need_tar = true
#end