beeps 0.3.8 → 0.3.10
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/.doc/ext/beeps/analyser.cpp +2 -2
- data/.doc/ext/beeps/native.cpp +5 -5
- data/.doc/ext/beeps/oscillator.cpp +2 -2
- data/.doc/ext/beeps/sequencer.cpp +17 -0
- data/.doc/ext/beeps/sound.cpp +1 -1
- data/.doc/ext/beeps/text_in.cpp +63 -0
- data/.doc/ext/beeps/value.cpp +107 -0
- data/CLAUDE.md +24 -0
- data/ChangeLog.md +18 -0
- data/README.md +1 -0
- data/Rakefile +3 -1
- data/VERSION +1 -1
- data/beeps.gemspec +2 -2
- data/ext/beeps/analyser.cpp +2 -2
- data/ext/beeps/extconf.rb +10 -6
- data/ext/beeps/native.cpp +5 -5
- data/ext/beeps/oscillator.cpp +2 -2
- data/ext/beeps/sequencer.cpp +18 -0
- data/ext/beeps/sound.cpp +1 -1
- data/ext/beeps/text_in.cpp +66 -0
- data/ext/beeps/value.cpp +114 -0
- data/include/beeps/generator.h +121 -0
- data/include/beeps/ruby/generator.h +22 -0
- data/include/beeps/signals.h +2 -0
- data/lib/beeps/ext.rb +1 -1
- data/lib/beeps/processor.rb +56 -1
- data/src/osx/signals.h +23 -0
- data/src/osx/signals.mm +66 -15
- data/src/osx/text_in.mm +133 -0
- data/src/sdl/beeps.cpp +19 -0
- data/src/sdl/signals.cpp +18 -0
- data/src/sdl/text_in.cpp +61 -0
- data/src/sequencer.cpp +31 -16
- data/src/signals.cpp +104 -30
- data/src/signals.h +10 -4
- data/src/value.cpp +181 -0
- data/src/win32/text_in.cpp +62 -0
- data/test/test_oscillator.rb +2 -2
- data/test/test_sequencer.rb +25 -0
- data/test/test_value.rb +47 -0
- metadata +24 -18
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beeps
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- xordog
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-04-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: xot
|
|
@@ -16,40 +16,28 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.3.
|
|
20
|
-
- - ">="
|
|
21
|
-
- !ruby/object:Gem::Version
|
|
22
|
-
version: 0.3.8
|
|
19
|
+
version: 0.3.10
|
|
23
20
|
type: :runtime
|
|
24
21
|
prerelease: false
|
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
23
|
requirements:
|
|
27
24
|
- - "~>"
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.3.
|
|
30
|
-
- - ">="
|
|
31
|
-
- !ruby/object:Gem::Version
|
|
32
|
-
version: 0.3.8
|
|
26
|
+
version: 0.3.10
|
|
33
27
|
- !ruby/object:Gem::Dependency
|
|
34
28
|
name: rucy
|
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
|
36
30
|
requirements:
|
|
37
31
|
- - "~>"
|
|
38
32
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 0.3.
|
|
40
|
-
- - ">="
|
|
41
|
-
- !ruby/object:Gem::Version
|
|
42
|
-
version: 0.3.8
|
|
33
|
+
version: 0.3.10
|
|
43
34
|
type: :runtime
|
|
44
35
|
prerelease: false
|
|
45
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
46
37
|
requirements:
|
|
47
38
|
- - "~>"
|
|
48
39
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: 0.3.
|
|
50
|
-
- - ">="
|
|
51
|
-
- !ruby/object:Gem::Version
|
|
52
|
-
version: 0.3.8
|
|
40
|
+
version: 0.3.10
|
|
53
41
|
description: Synthesize and play beep sounds.
|
|
54
42
|
email: xordog@gmail.com
|
|
55
43
|
executables: []
|
|
@@ -75,7 +63,9 @@ extra_rdoc_files:
|
|
|
75
63
|
- ".doc/ext/beeps/signals.cpp"
|
|
76
64
|
- ".doc/ext/beeps/sound.cpp"
|
|
77
65
|
- ".doc/ext/beeps/sound_player.cpp"
|
|
66
|
+
- ".doc/ext/beeps/text_in.cpp"
|
|
78
67
|
- ".doc/ext/beeps/time_stretch.cpp"
|
|
68
|
+
- ".doc/ext/beeps/value.cpp"
|
|
79
69
|
files:
|
|
80
70
|
- ".doc/ext/beeps/analyser.cpp"
|
|
81
71
|
- ".doc/ext/beeps/beeps.cpp"
|
|
@@ -96,12 +86,15 @@ files:
|
|
|
96
86
|
- ".doc/ext/beeps/signals.cpp"
|
|
97
87
|
- ".doc/ext/beeps/sound.cpp"
|
|
98
88
|
- ".doc/ext/beeps/sound_player.cpp"
|
|
89
|
+
- ".doc/ext/beeps/text_in.cpp"
|
|
99
90
|
- ".doc/ext/beeps/time_stretch.cpp"
|
|
91
|
+
- ".doc/ext/beeps/value.cpp"
|
|
100
92
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
101
93
|
- ".github/workflows/release-gem.yml"
|
|
102
94
|
- ".github/workflows/tag.yml"
|
|
103
95
|
- ".github/workflows/test.yml"
|
|
104
96
|
- ".github/workflows/utils.rb"
|
|
97
|
+
- CLAUDE.md
|
|
105
98
|
- CONTRIBUTING.md
|
|
106
99
|
- ChangeLog.md
|
|
107
100
|
- Gemfile
|
|
@@ -132,7 +125,9 @@ files:
|
|
|
132
125
|
- ext/beeps/signals.cpp
|
|
133
126
|
- ext/beeps/sound.cpp
|
|
134
127
|
- ext/beeps/sound_player.cpp
|
|
128
|
+
- ext/beeps/text_in.cpp
|
|
135
129
|
- ext/beeps/time_stretch.cpp
|
|
130
|
+
- ext/beeps/value.cpp
|
|
136
131
|
- include/beeps.h
|
|
137
132
|
- include/beeps/beeps.h
|
|
138
133
|
- include/beeps/debug.h
|
|
@@ -176,21 +171,28 @@ files:
|
|
|
176
171
|
- src/openal.h
|
|
177
172
|
- src/oscillator.cpp
|
|
178
173
|
- src/osx/beeps.mm
|
|
174
|
+
- src/osx/signals.h
|
|
179
175
|
- src/osx/signals.mm
|
|
176
|
+
- src/osx/text_in.mm
|
|
180
177
|
- src/pitch_shift.cpp
|
|
181
178
|
- src/processor.cpp
|
|
182
179
|
- src/processor.h
|
|
183
180
|
- src/reverb.cpp
|
|
181
|
+
- src/sdl/beeps.cpp
|
|
182
|
+
- src/sdl/signals.cpp
|
|
183
|
+
- src/sdl/text_in.cpp
|
|
184
184
|
- src/sequencer.cpp
|
|
185
185
|
- src/signals.cpp
|
|
186
186
|
- src/signals.h
|
|
187
187
|
- src/sound.cpp
|
|
188
188
|
- src/sound.h
|
|
189
189
|
- src/time_stretch.cpp
|
|
190
|
+
- src/value.cpp
|
|
190
191
|
- src/win32/beeps.cpp
|
|
191
192
|
- src/win32/exception.cpp
|
|
192
193
|
- src/win32/exception.h
|
|
193
194
|
- src/win32/signals.cpp
|
|
195
|
+
- src/win32/text_in.cpp
|
|
194
196
|
- src/x_pass.h
|
|
195
197
|
- test/helper.rb
|
|
196
198
|
- test/test_analyser.rb
|
|
@@ -205,10 +207,12 @@ files:
|
|
|
205
207
|
- test/test_oscillator.rb
|
|
206
208
|
- test/test_pitch_shift.rb
|
|
207
209
|
- test/test_processor.rb
|
|
210
|
+
- test/test_sequencer.rb
|
|
208
211
|
- test/test_signals.rb
|
|
209
212
|
- test/test_sound.rb
|
|
210
213
|
- test/test_sound_player.rb
|
|
211
214
|
- test/test_time_stretch.rb
|
|
215
|
+
- test/test_value.rb
|
|
212
216
|
homepage: https://github.com/xord/beeps
|
|
213
217
|
licenses:
|
|
214
218
|
- MIT
|
|
@@ -247,7 +251,9 @@ test_files:
|
|
|
247
251
|
- test/test_oscillator.rb
|
|
248
252
|
- test/test_pitch_shift.rb
|
|
249
253
|
- test/test_processor.rb
|
|
254
|
+
- test/test_sequencer.rb
|
|
250
255
|
- test/test_signals.rb
|
|
251
256
|
- test/test_sound.rb
|
|
252
257
|
- test/test_sound_player.rb
|
|
253
258
|
- test/test_time_stretch.rb
|
|
259
|
+
- test/test_value.rb
|