plant-sirens-ruby 0.0.1 → 0.0.3
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/Rakefile +1 -3
- data/VERSION +1 -1
- data/sirens-ruby.gemspec +4 -1
- metadata +12 -3
data/Rakefile
CHANGED
|
@@ -6,6 +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.1.0')
|
|
9
10
|
gem.summary = "Ruby gem that implements Sirens, a library for segmentation, indexing, and retrieval of environmental and natural sounds."
|
|
10
11
|
gem.description = "Ruby gem that implements Sirens, a library for segmentation, indexing, and retrieval of environmental and natural sounds."
|
|
11
12
|
gem.email = "bmechtley+github@gmail.com"
|
|
@@ -18,9 +19,6 @@ rescue LoadError
|
|
|
18
19
|
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
|
19
20
|
end
|
|
20
21
|
|
|
21
|
-
Rake::GemPackageTask.new(spec.gemspec) do |pkg|
|
|
22
|
-
end
|
|
23
|
-
|
|
24
22
|
require 'rake/extensiontask'
|
|
25
23
|
Rake::ExtensionTask.new('sirens', spec.gemspec)
|
|
26
24
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.3
|
data/sirens-ruby.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
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.3"
|
|
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"]
|
|
@@ -41,8 +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.1.0"])
|
|
44
45
|
else
|
|
46
|
+
s.add_dependency(%q<rice>, [">= 1.1.0"])
|
|
45
47
|
end
|
|
46
48
|
else
|
|
49
|
+
s.add_dependency(%q<rice>, [">= 1.1.0"])
|
|
47
50
|
end
|
|
48
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.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brandon Mechtley
|
|
@@ -11,8 +11,17 @@ cert_chain: []
|
|
|
11
11
|
|
|
12
12
|
date: 2009-06-26 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: rice
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 1.1.0
|
|
24
|
+
version:
|
|
16
25
|
description: Ruby gem that implements Sirens, a library for segmentation, indexing, and retrieval of environmental and natural sounds.
|
|
17
26
|
email: bmechtley+github@gmail.com
|
|
18
27
|
executables: []
|