ruby-audio-heroku 1.6.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +340 -0
- data/README.rdoc +38 -0
- data/Rakefile +81 -0
- data/ext/rubyaudio_ext/extconf.rb +32 -0
- data/ext/rubyaudio_ext/ra_buffer.c +342 -0
- data/ext/rubyaudio_ext/ra_buffer.h +41 -0
- data/ext/rubyaudio_ext/ra_sound.c +403 -0
- data/ext/rubyaudio_ext/ra_sound.h +38 -0
- data/ext/rubyaudio_ext/ra_soundinfo.c +165 -0
- data/ext/rubyaudio_ext/ra_soundinfo.h +25 -0
- data/ext/rubyaudio_ext/rubyaudio_ext.c +92 -0
- data/ext/rubyaudio_ext/vendor/libsndfile/include/sndfile.h +666 -0
- data/lib/ruby-audio/buffer.rb +17 -0
- data/lib/ruby-audio/sound.rb +85 -0
- data/lib/ruby-audio/sound_info.rb +83 -0
- data/lib/ruby-audio.rb +10 -0
- data/ruby-audio-heroku.gemspec +22 -0
- data/spec/buffer_spec.rb +107 -0
- data/spec/data/what.mp3 +0 -0
- data/spec/data/what.wav +0 -0
- data/spec/data/what2.wav +0 -0
- data/spec/sound_info_spec.rb +55 -0
- data/spec/sound_spec.rb +220 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +24 -0
- metadata +84 -0
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruby-audio-heroku
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.6.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Khurram Zaman
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-10-25 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: ruby-audio-heroku wraps around libsndfile to provide simplified sound
|
15
|
+
reading and writing support to ruby programs. it works on heroku.
|
16
|
+
email:
|
17
|
+
- khurram.zaman@gmail.com
|
18
|
+
executables: []
|
19
|
+
extensions:
|
20
|
+
- ext/rubyaudio_ext/extconf.rb
|
21
|
+
extra_rdoc_files:
|
22
|
+
- README.rdoc
|
23
|
+
- ext/rubyaudio_ext/ra_buffer.c
|
24
|
+
- ext/rubyaudio_ext/ra_sound.c
|
25
|
+
- ext/rubyaudio_ext/ra_soundinfo.c
|
26
|
+
- ext/rubyaudio_ext/rubyaudio_ext.c
|
27
|
+
files:
|
28
|
+
- ruby-audio-heroku.gemspec
|
29
|
+
- README.rdoc
|
30
|
+
- LICENSE
|
31
|
+
- Rakefile
|
32
|
+
- lib/ruby-audio/buffer.rb
|
33
|
+
- lib/ruby-audio/sound.rb
|
34
|
+
- lib/ruby-audio/sound_info.rb
|
35
|
+
- lib/ruby-audio.rb
|
36
|
+
- spec/buffer_spec.rb
|
37
|
+
- spec/sound_info_spec.rb
|
38
|
+
- spec/sound_spec.rb
|
39
|
+
- spec/spec_helper.rb
|
40
|
+
- spec/spec.opts
|
41
|
+
- spec/data/what.wav
|
42
|
+
- spec/data/what2.wav
|
43
|
+
- spec/data/what.mp3
|
44
|
+
- ext/rubyaudio_ext/ra_buffer.c
|
45
|
+
- ext/rubyaudio_ext/ra_sound.c
|
46
|
+
- ext/rubyaudio_ext/ra_soundinfo.c
|
47
|
+
- ext/rubyaudio_ext/rubyaudio_ext.c
|
48
|
+
- ext/rubyaudio_ext/ra_buffer.h
|
49
|
+
- ext/rubyaudio_ext/ra_sound.h
|
50
|
+
- ext/rubyaudio_ext/ra_soundinfo.h
|
51
|
+
- ext/rubyaudio_ext/vendor/libsndfile/include/sndfile.h
|
52
|
+
- ext/rubyaudio_ext/extconf.rb
|
53
|
+
homepage: https://github.com/khurramzaman/ruby-audio-heroku
|
54
|
+
licenses: []
|
55
|
+
post_install_message:
|
56
|
+
rdoc_options:
|
57
|
+
- --line-numbers
|
58
|
+
- --main
|
59
|
+
- README.rdoc
|
60
|
+
require_paths:
|
61
|
+
- lib
|
62
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
63
|
+
none: false
|
64
|
+
requirements:
|
65
|
+
- - ! '>='
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
68
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
|
+
none: false
|
70
|
+
requirements:
|
71
|
+
- - ! '>='
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0'
|
74
|
+
requirements:
|
75
|
+
- ''
|
76
|
+
rubyforge_project:
|
77
|
+
rubygems_version: 1.8.23
|
78
|
+
signing_key:
|
79
|
+
specification_version: 3
|
80
|
+
summary: libsndfile wrapper for ruby that works on heroku
|
81
|
+
test_files:
|
82
|
+
- spec/buffer_spec.rb
|
83
|
+
- spec/sound_info_spec.rb
|
84
|
+
- spec/sound_spec.rb
|