forked from benalavi/waveform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwaveform.gemspec
More file actions
28 lines (23 loc) · 749 Bytes
/
waveform.gemspec
File metadata and controls
28 lines (23 loc) · 749 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
27
28
#require "./lib/waveform"
Gem::Specification.new do |s|
s.name = "waveform"
s.version = "0.0.5"
s.summary = "Generate waveform images from WAV, MP3, etc... files"
s.description = "Generate waveform images from WAV, MP3, etc... files - as a gem or via CLI."
s.authors = ["Ben Alavi", "Izoria Vladislav"]
s.email = ["benalavi@gmail.com"]
s.homepage = "http://github.com/izzm/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"
s.add_development_dependency "contest"
end