forked from kig/metadata
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmetadata.gemspec
More file actions
25 lines (20 loc) · 799 Bytes
/
metadata.gemspec
File metadata and controls
25 lines (20 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "metadata/version"
Gem::Specification.new do |s|
s.name = "metadata"
s.version = Metadata::VERSION
s.authors = ["Ilmari Heikkinen"]
s.email = ["ilmari.heikkinen@gmail.com"]
s.homepage = ""
s.summary = %q{Metadata extractor}
s.description = %q{Metadata extractor}
s.rubyforge_project = "metadata"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
%w(flacinfo-rb wmainfo-rb MP4Info id3lib-ruby apetag text hpricot ruby-mp3info rchardet19).each do |dep|
s.add_dependency(dep)
end
end