ruby_dsp 0.0.2 → 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.
- checksums.yaml +4 -4
- data/.yardopts +5 -0
- data/README.md +1 -1
- data/lib/ruby_dsp/version.rb +1 -1
- data/ruby_dsp.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2302dab136b64de0880e5d512095d28e7730803a76bee8dc4f97b284be76fffb
|
|
4
|
+
data.tar.gz: b3831519ba0a0997c09bfe285c5ec70a683172a6da645faf9df61e3ff79c3d71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1210548618a8e94e1f80cc014802bfd257595c677301bd8980d6db0e3e1751a2a0dc5a58dd5b16426515f5054e00cdb95ebce10e647a86891d17fcb6e99b3364
|
|
7
|
+
data.tar.gz: 6edb77f271deed7670a19afda00bf0f8aa1d255dddbde4a269d5a483dff101bcac17f000f7e6ace1ab19a06f8327101f1a0160ec9b529606f0896ab3e6a021c8
|
data/.yardopts
ADDED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# RubyDSP
|
|
2
2
|
|
|
3
|
-
> 🚧 **Status:** This project is currently in early development. It is
|
|
3
|
+
> 🚧 **Status:** This project is currently in early development. It is hopefully functional, but API changes are expected. There is no warranty.
|
|
4
4
|
|
|
5
5
|
**RubyDSP** is an audio processing and DSP Ruby gem. Ultimately, it aims to be `librosa`-wannabe for Ruby. It uses C++ under the hood, utilizing [miniaudio](https://miniaud.io/) and [Rice](https://github.com/jasonroelofs/rice)
|
|
6
6
|
|
data/lib/ruby_dsp/version.rb
CHANGED
data/ruby_dsp.gemspec
CHANGED
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
|
|
|
14
14
|
|
|
15
15
|
s.required_ruby_version = '>= 3.0.0'
|
|
16
16
|
|
|
17
|
-
s.require_paths = ['lib'
|
|
17
|
+
s.require_paths = ['lib']
|
|
18
18
|
s.extensions = ['ext/ruby_dsp/extconf.rb']
|
|
19
19
|
|
|
20
20
|
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby_dsp
|
|
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
|
- Radek C.
|
|
@@ -102,6 +102,7 @@ extensions:
|
|
|
102
102
|
extra_rdoc_files: []
|
|
103
103
|
files:
|
|
104
104
|
- ".gitignore"
|
|
105
|
+
- ".yardopts"
|
|
105
106
|
- Gemfile
|
|
106
107
|
- README.md
|
|
107
108
|
- Rakefile
|
|
@@ -120,7 +121,6 @@ post_install_message:
|
|
|
120
121
|
rdoc_options: []
|
|
121
122
|
require_paths:
|
|
122
123
|
- lib
|
|
123
|
-
- stubs/ruby_dsp
|
|
124
124
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
125
125
|
requirements:
|
|
126
126
|
- - ">="
|