christoph-buente-ruby-xtract 0.0.1 → 0.0.2
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.
- metadata +23 -20
- data/README +0 -19
- data/lib/xtract.rb +0 -12
- data/lib/xtract/scalar.rb +0 -8
- data/lib/xtract/vector.rb +0 -8
- data/spec/ruby-xtract_spec.rb +0 -0
- data/spec/spec_helper.rb +0 -0
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: christoph-buente-ruby-xtract
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "Christoph B\xC3\xBCnte"
|
|
@@ -9,31 +9,34 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-05-16 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: ffi
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
version:
|
|
16
25
|
description: FFI wrapper for libxtract which is a simple, portable, lightweight library of audio feature extraction functions.
|
|
17
26
|
email: info@christophbuente.de
|
|
18
27
|
executables: []
|
|
19
28
|
|
|
20
29
|
extensions: []
|
|
21
30
|
|
|
22
|
-
extra_rdoc_files:
|
|
23
|
-
|
|
24
|
-
files:
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
-
|
|
28
|
-
- spec/ruby-xtract_spec.rb
|
|
29
|
-
- spec/spec_helper.rb
|
|
30
|
-
- README
|
|
31
|
-
has_rdoc: true
|
|
32
|
-
homepage: http://ruby-xtract.rubyforge.net/
|
|
31
|
+
extra_rdoc_files: []
|
|
32
|
+
|
|
33
|
+
files: []
|
|
34
|
+
|
|
35
|
+
has_rdoc: false
|
|
36
|
+
homepage: http://christoph-buente.github.com/ruby-xtract/
|
|
33
37
|
post_install_message:
|
|
34
|
-
rdoc_options:
|
|
35
|
-
|
|
36
|
-
- --charset=UTF-8
|
|
38
|
+
rdoc_options: []
|
|
39
|
+
|
|
37
40
|
require_paths:
|
|
38
41
|
- lib
|
|
39
42
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -50,10 +53,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
50
53
|
version:
|
|
51
54
|
requirements: []
|
|
52
55
|
|
|
53
|
-
rubyforge_project:
|
|
56
|
+
rubyforge_project: ruby-xtract
|
|
54
57
|
rubygems_version: 1.2.0
|
|
55
58
|
signing_key:
|
|
56
59
|
specification_version: 2
|
|
57
|
-
summary: FFI wrapper for libxtract
|
|
60
|
+
summary: FFI based wrapper for libxtract.
|
|
58
61
|
test_files: []
|
|
59
62
|
|
data/README
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
ruby-xtract by Christoph Bünte http://www.christophbuente.de
|
|
2
|
-
=================================================================
|
|
3
|
-
|
|
4
|
-
Libxtract (http://libxtract.sourceforge.net/) is a simple, portable, lightweight library of audio feature extraction functions. Now this functionality is brought to ruby.
|
|
5
|
-
|
|
6
|
-
What is it?
|
|
7
|
-
===========
|
|
8
|
-
ruby-xtract is a FFI wrapper for libxtract
|
|
9
|
-
|
|
10
|
-
What do I need?
|
|
11
|
-
===============
|
|
12
|
-
You need ffi and libxtract.
|
|
13
|
-
% sudo gem install ffi
|
|
14
|
-
|
|
15
|
-
On a linux box install packages with your favourite package manager like yum or apt
|
|
16
|
-
% sudo apt-get install libxtract-dev
|
|
17
|
-
|
|
18
|
-
On a mac install packages via macports
|
|
19
|
-
% sudo port install libxtract (i just submitted it to macports so stay tuned)
|
data/lib/xtract.rb
DELETED
data/lib/xtract/scalar.rb
DELETED
data/lib/xtract/vector.rb
DELETED
data/spec/ruby-xtract_spec.rb
DELETED
|
File without changes
|
data/spec/spec_helper.rb
DELETED
|
File without changes
|