forked from jstrait/wavefile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwavefile.gemspec
18 lines (17 loc) · 1023 Bytes
/
wavefile.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$:.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 = "https://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/**/*.rb"] + Dir["test/**/*.wav"]
s.require_path = "lib"
s.required_ruby_version = ">= 2.0"
s.license = "MIT"
s.post_install_message = "Thanks for installing the WaveFile gem! For documentation and examples, visit https://wavefilegem.com"
end