File: mp3tab.gemspec

package info (click to toggle)
ruby-mp3tag 1.0-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 100 kB
  • sloc: ruby: 353; makefile: 10
file content (26 lines) | stat: -rw-r--r-- 619 bytes parent folder | download | duplicates (3)
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
26
Gem::Specification::new do |spec|

 spec.name = "mp3tag"
  spec.version = "2.6.0"
  spec.platform = Gem::Platform::RUBY
  spec.summary = "mp3tag"
  spec.description = "Ruby library for manipulating ID3V1.1 tags in MP3"
  spec.license = "GPL2"

  spec.files = [ "lib/mp3tag.rb" ]

  spec.executables = []
  
  spec.require_path = "lib"

  spec.test_files = nil

### spec.add_dependency 'lib', '>= version'
#### spec.add_dependency 'map'

  spec.extensions.push(*[])

  spec.author = "Lars Christensen"
  spec.email = "dsl8950@vip.cybercity.dk"
  spec.homepage = "http://users.cybercity.dk/~dsl8950/ruby/mp3tag.html"
end