-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathwaveform.gemspec
More file actions
26 lines (22 loc) · 821 Bytes
/
waveform.gemspec
File metadata and controls
26 lines (22 loc) · 821 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
25
26
require "./lib/waveform/version"
Gem::Specification.new do |s|
s.name = "waveform"
s.version = Waveform::VERSION
s.summary = "Generate waveform images from audio files"
s.description = "Generate waveform images from audio files. Includes a Waveform class for generating waveforms in your code as well as a simple command-line program called 'waveform' for generating on the command line."
s.authors = ["Ben Alavi"]
s.email = ["benalavi@gmail.com"]
s.homepage = "http://github.com/benalavi/waveform"
s.files = Dir[
"LICENSE",
"README.md",
"Rakefile",
"lib/**/*.rb",
"*.gemspec",
"test/**/*.rb",
"bin/*"
]
s.executables = "waveform"
s.add_dependency "ruby-audio"
s.add_dependency "chunky_png"
end