plant-sirens-ruby 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +8 -3
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/sirens-ruby.gemspec +5 -5
- metadata +3 -3
data/README.markdown
CHANGED
@@ -2,11 +2,16 @@
|
|
2
2
|
sirens-ruby is a ruby extension for [Sirens](http://github.com/plant/sirens), a library for segmentation, indexing, and retrieval of environmental and natural sounds. Sirens is currently under development and only supports basic feature extraction. Please check back for updates.
|
3
3
|
|
4
4
|
## Requirements
|
5
|
-
To install sirens-ruby, it is necessary to have
|
5
|
+
To install sirens-ruby, it is necessary to have these two libraries:
|
6
6
|
|
7
7
|
1. [FFTW](http://www.fftw.org/download.html)
|
8
|
-
2. [
|
9
|
-
|
8
|
+
2. [Sirens](http://github.com/plant/sirens)
|
9
|
+
|
10
|
+
Additionally, sirens-ruby has the following gem dependencies, which RubyGems should take care of:
|
11
|
+
|
12
|
+
1. [rake-compiler](http://rubyforge.org/projects/rake-compiler/)
|
13
|
+
2. [jeweler](http://github.com/technicalpickles/jeweler/)
|
14
|
+
2. [rice](http://github.com/cout/rice/) _Note: I've had some problems with installing the Rice 1.1.0 gem. Try 1.0.2 if it doesn't work._
|
10
15
|
|
11
16
|
## Installation
|
12
17
|
To install Soundwalk, perform the following steps.
|
data/Rakefile
CHANGED
@@ -6,7 +6,7 @@ begin
|
|
6
6
|
spec = Jeweler::Tasks.new do |gem|
|
7
7
|
gem.files.include %w(ext/ruby/extconf.rb ext/ruby/sirens-ruby.cpp)
|
8
8
|
gem.name = "sirens-ruby"
|
9
|
-
gem.add_dependency('rice', '>= 1.
|
9
|
+
gem.add_dependency('rice', '>= 1.0.2')
|
10
10
|
gem.summary = "Ruby gem that implements Sirens, a library for segmentation, indexing, and retrieval of environmental and natural sounds."
|
11
11
|
gem.description = "Ruby gem that implements Sirens, a library for segmentation, indexing, and retrieval of environmental and natural sounds."
|
12
12
|
gem.email = "bmechtley+github@gmail.com"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.4
|
data/sirens-ruby.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{sirens-ruby}
|
5
|
-
s.version = "0.0.
|
5
|
+
s.version = "0.0.4"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Brandon Mechtley"]
|
9
|
-
s.date = %q{2009-06-
|
9
|
+
s.date = %q{2009-06-29}
|
10
10
|
s.description = %q{Ruby gem that implements Sirens, a library for segmentation, indexing, and retrieval of environmental and natural sounds.}
|
11
11
|
s.email = %q{bmechtley+github@gmail.com}
|
12
12
|
s.extensions = ["ext/sirens/extconf.rb"]
|
@@ -41,11 +41,11 @@ Gem::Specification.new do |s|
|
|
41
41
|
s.specification_version = 3
|
42
42
|
|
43
43
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
44
|
-
s.add_runtime_dependency(%q<rice>, [">= 1.
|
44
|
+
s.add_runtime_dependency(%q<rice>, [">= 1.0.2"])
|
45
45
|
else
|
46
|
-
s.add_dependency(%q<rice>, [">= 1.
|
46
|
+
s.add_dependency(%q<rice>, [">= 1.0.2"])
|
47
47
|
end
|
48
48
|
else
|
49
|
-
s.add_dependency(%q<rice>, [">= 1.
|
49
|
+
s.add_dependency(%q<rice>, [">= 1.0.2"])
|
50
50
|
end
|
51
51
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: plant-sirens-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Mechtley
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-06-
|
12
|
+
date: 2009-06-29 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 1.
|
23
|
+
version: 1.0.2
|
24
24
|
version:
|
25
25
|
description: Ruby gem that implements Sirens, a library for segmentation, indexing, and retrieval of environmental and natural sounds.
|
26
26
|
email: bmechtley+github@gmail.com
|