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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2ac91e497893ace10dae660157fec4b12194071c24e7c5d543bb9b29ec5c0fd2
4
- data.tar.gz: d46932d54ef0e8d403fa7397c617dd04e70bf6795204fbb68250f2e522556449
3
+ metadata.gz: 2302dab136b64de0880e5d512095d28e7730803a76bee8dc4f97b284be76fffb
4
+ data.tar.gz: b3831519ba0a0997c09bfe285c5ec70a683172a6da645faf9df61e3ff79c3d71
5
5
  SHA512:
6
- metadata.gz: b96fc6f9149da88259defbee064bb64ab09582f7a1d7cdbe5250aef8034b0e029fcff9b7dacce94a2f8f07dcc246d1344edb57843df75ddb85075807e2a5453d
7
- data.tar.gz: 9457c0f64cce62591090217d0d8bc0d00bc69cea90024dbf64b6fa4e8fd5f12a6832f8f4e10ad6f2500e39c38b4036a49fbeaefdfc5f5ffc6efbfa55f95c2e88
6
+ metadata.gz: 1210548618a8e94e1f80cc014802bfd257595c677301bd8980d6db0e3e1751a2a0dc5a58dd5b16426515f5054e00cdb95ebce10e647a86891d17fcb6e99b3364
7
+ data.tar.gz: 6edb77f271deed7670a19afda00bf0f8aa1d255dddbde4a269d5a483dff101bcac17f000f7e6ace1ab19a06f8327101f1a0160ec9b529606f0896ab3e6a021c8
data/.yardopts ADDED
@@ -0,0 +1,5 @@
1
+ --title "RubyDSP Documentation"
2
+ --readme README.md
3
+ --markup markdown
4
+ lib/**/*.rb
5
+ stubs/**/*.rb
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # RubyDSP
2
2
 
3
- > 🚧 **Status:** This project is currently in early development. It is fully functional, but API changes are expected.
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
 
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module RubyDSP
5
- VERSION = '0.0.2'
5
+ VERSION = '0.0.3'
6
6
  end
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', 'stubs/ruby_dsp']
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.2
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
  - - ">="