forked from jstrait/wavefile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwavefile.gemspec
17 lines (16 loc) · 868 Bytes
/
wavefile.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$:.push File.expand_path("../lib", __FILE__)
require 'wavefile'
Gem::Specification.new do |s|
s.name = "wavefile"
s.version = WaveFile::VERSION
s.author = "Joel Strait"
s.email = "joel dot strait at Google's popular web mail service"
s.homepage = "http://wavefilegem.com/"
s.platform = Gem::Platform::RUBY
s.summary = "A pure Ruby library for reading and writing Wave sound files (*.wav)"
s.description = "You can use this gem to create Ruby programs that work with audio, by reading and writing Wave sound files (*.wav). Since it is written in pure Ruby (as opposed to wrapping an existing C library), you can use it without having to compile a separate extension."
s.files = ["LICENSE", "README.markdown", "Rakefile"] + Dir["lib/**/*.rb"] + Dir["test/**/*"]
s.require_path = "lib"
s.required_ruby_version = '>= 1.9.3'
s.license = 'MIT'
end