forked from warhammerkid/ruby-audio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-audio.gemspec
22 lines (18 loc) · 949 Bytes
/
ruby-audio.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = 'ruby-audio'
s.version = '1.6.1'
s.platform = Gem::Platform::RUBY
s.authors = ['Stephen Augenstein']
s.email = ['[email protected]']
s.homepage = 'http://github.com/warhammerkid/ruby-audio'
s.summary = 'libsndfile wrapper for ruby'
s.description = 'ruby-audio wraps around libsndfile to provide simplified sound reading and writing support to ruby programs'
s.files = Dir['ruby-audio.gemspec', 'README.rdoc', 'LICENSE', 'Rakefile', 'lib/**/*.rb', 'spec/**/*.{rb,opts,wav,mp3}', 'ext/**/*.{c,h,rb}']
s.test_files = Dir['spec/**/*_spec.rb']
s.extensions = Dir["ext/**/extconf.rb"]
s.requirements << 'libsndfile (http://www.mega-nerd.com/libsndfile/)'
s.has_rdoc = true
s.extra_rdoc_files = Dir['README.rdoc', 'ext/**/*.c']
s.rdoc_options = ['--line-numbers', '--main', 'README.rdoc']
end