-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathruby-ogginfo.gemspec
41 lines (37 loc) · 2.08 KB
/
ruby-ogginfo.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- encoding: utf-8 -*-
# stub: ruby-ogginfo 0.7.20131027172616 ruby lib
Gem::Specification.new do |s|
s.name = "ruby-ogginfo"
s.version = "0.7.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Guillaume Pierronnet", "Grant Gardner"]
s.date = "2013-10-27"
s.description = "ruby-ogginfo gives you access to low level information on ogg files\n(bitrate, length, samplerate, encoder, etc... ), as well as tag.\nIt is written in pure ruby."
s.email = ["[email protected]", "[email protected]"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
s.files = ["History.txt", "Manifest.txt", "README.txt", "Rakefile", "lib/ogg/codecs/comments.rb", "lib/ogg/codecs/speex.rb", "lib/ogg/codecs/vorbis.rb", "lib/ogg/codecs/opus.rb", "lib/ogg/page.rb", "lib/ogg/reader.rb", "lib/ogg/writer.rb", "lib/ogg.rb", "lib/ogginfo.rb", "setup.rb", "test/fixtures.yml", "test/test_helper.rb", "test/test_ruby-ogginfo.rb", "test/test_ruby-othercodecs.rb"]
s.homepage = "http://ruby-ogginfo.rubyforge.org/"
s.rdoc_options = ["--main", "README.txt"]
s.require_paths = ["lib"]
s.rubyforge_project = "ruby-ogginfo"
s.rubygems_version = "2.1.5"
s.summary = "ruby-ogginfo gives you access to low level information on ogg files (bitrate, length, samplerate, encoder, etc.."
s.test_files = ["test/test_ruby-othercodecs.rb", "test/test_ruby-ogginfo.rb", "test/test_helper.rb"]
s.license = 'GPL-3'
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rdoc>, ["~> 3.10"])
s.add_development_dependency(%q<rcov>, ["~> 0.9"])
s.add_development_dependency(%q<hoe>, ["~> 3.5"])
else
s.add_dependency(%q<rdoc>, ["~> 3.10"])
s.add_dependency(%q<rcov>, ["~> 0.9"])
s.add_dependency(%q<hoe>, ["~> 3.5"])
end
else
s.add_dependency(%q<rdoc>, ["~> 3.10"])
s.add_dependency(%q<rcov>, ["~> 0.9"])
s.add_dependency(%q<hoe>, ["~> 3.5"])
end
end