audio-playback 0.0.3 → 0.0.4
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/README.md +2 -1
- data/lib/audio-playback.rb +1 -1
- data/lib/audio-playback/device/stream.rb +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 315481daaba2617f0d73152c97a05f6aacd7ac82
|
|
4
|
+
data.tar.gz: a6b72af924a20066a5ef290ee98fc7d3e4487c85
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 229fc708dee47f9a559780defc1819cf6d133bfb1c34018aaf2c02103bbbb59670a47e833ab258d06c4bc8c509626c278b0df796ef6cb29eadef9f46524b9302
|
|
7
|
+
data.tar.gz: f2d343c8f9e7d88f3ba5415debdc32ab9f024d0dc949d757b2e8d108b535bff7322b2e3a30d8e20993a249b5ea7789d79249af8e2fd385332b49d30f19925552
|
data/README.md
CHANGED
|
@@ -85,7 +85,8 @@ More Ruby code examples:
|
|
|
85
85
|
|
|
86
86
|
* [List devices](https://github.com/arirusso/audio-playback/blob/master/examples/list_devices.rb)
|
|
87
87
|
* [Select a file and play](https://github.com/arirusso/audio-playback/blob/master/examples/select_and_play.rb)
|
|
88
|
-
* [Play multiple files in one stream](https://github.com/arirusso/audio-playback/blob/master/examples/
|
|
88
|
+
* [Play multiple files in one stream simultaneously](https://github.com/arirusso/audio-playback/blob/master/examples/play_multiple_simultaneous.rb)
|
|
89
|
+
* [Play multiple files in one stream sequentially](https://github.com/arirusso/audio-playback/blob/master/examples/play_multiple_sequential.rb)
|
|
89
90
|
* [Play multiple files in multiple streams](https://github.com/arirusso/audio-playback/blob/master/examples/play_multiple.rb)
|
|
90
91
|
|
|
91
92
|
## License
|
data/lib/audio-playback.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: audio-playback
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ari Russo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-11-
|
|
11
|
+
date: 2015-11-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: minitest
|