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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6d31788d41c35211e2136b9e47ec91313124292c
4
- data.tar.gz: b4266924f87e9120e0eef56427cca84f1c7a83da
3
+ metadata.gz: 315481daaba2617f0d73152c97a05f6aacd7ac82
4
+ data.tar.gz: a6b72af924a20066a5ef290ee98fc7d3e4487c85
5
5
  SHA512:
6
- metadata.gz: dd437d403ba74b706e8d28f62f9b9d65724bfde9fa84cb2ab0ca9ae5a9ed41939480b740e58b1f3bc24d36e743d97a83f058788fb674bf5d1849a6f09eeafb98
7
- data.tar.gz: fa358efb5773f25ee46dfd88c9b97d2093f5b4b9b17442a68389f50d711a9d725b04185fedbe09490ce84af7a858bb2e7141d8ab5dadc679204c3cb612cfdbb9
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/play_multiple.rb)
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
@@ -24,7 +24,7 @@ require "audio-playback/sound"
24
24
  # Play audio files
25
25
  module AudioPlayback
26
26
 
27
- VERSION = "0.0.3"
27
+ VERSION = "0.0.4"
28
28
 
29
29
  # Convenience method to play an audio file
30
30
  # @param [Array<::File>, Array<String>, ::File, String] file_paths
@@ -53,7 +53,6 @@ module AudioPlayback
53
53
  rescue SystemExit, Interrupt
54
54
  # Control-C
55
55
  ensure
56
- exit
57
56
  true
58
57
  end
59
58
  end
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.3
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-04 00:00:00.000000000 Z
11
+ date: 2015-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest