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