ffi-coremidi 0.3.4 → 0.3.5

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: 752cf9224dff1bcef04045b05c844967890ce76a
4
- data.tar.gz: 0579caa9d9f3c37194925d45338168e91a882869
3
+ metadata.gz: 02fbbcac2bae39264c7109814065da5271cf51aa
4
+ data.tar.gz: a0e119085cd64f85928bcebe4a35feb5640f79ac
5
5
  SHA512:
6
- metadata.gz: 71b82dbdb161c5f4d6c135d325ae862072b6df2c2f82bf70fca28aa2eb805a4f4815a914a5b693e09ae6964289d33d601779197fbaf611e520bc5a1d9a01419f
7
- data.tar.gz: b540b594437d51a15e4e7ad7b40da1953db2d0e4bfff20aad1346afbb1e08149746b826e240ca116698c74947b5de773e4782c0297e031f01d3041b5c7fbc4bf
6
+ metadata.gz: aa6b3a57ad8c644f0e4536c512a44485dd3e48722bbf7278eea125b09484bbd7b19ef0a04330ab39349bf46593d929cd2e53579e7e935cd3f62c43ade52e4a79
7
+ data.tar.gz: ea6b760413f3337345a3a8cab0fd9649d2496be70b7dad42516c25424e0988487aac99b279d14552ce1583ce05e1ae17576a9f4f3d7e62c4b83c077cc2b0d453
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  #### Realtime MIDI IO with Ruby for OSX
4
4
 
5
- This is a Ruby implementation of the [Apple Core MIDI framework API](https://developer.apple.com/library/mac/#documentation/MusicAudio/Reference/CACoreMIDIRef/MIDIServices/).
5
+ Access the [Apple Core MIDI framework API](https://developer.apple.com/library/mac/#documentation/MusicAudio/Reference/CACoreMIDIRef/MIDIServices/) with Ruby.
6
6
 
7
7
  Note that in the interest of allowing people on other platforms to utilize your code, please consider using [UniMIDI](http://github.com/arirusso/unimidi). UniMIDI is a platform independent wrapper which implements this library and has a similar API.
8
8
 
@@ -19,5 +19,5 @@ require "coremidi/source"
19
19
  require "coremidi/destination"
20
20
 
21
21
  module CoreMIDI
22
- VERSION = "0.3.4"
22
+ VERSION = "0.3.5"
23
23
  end
@@ -48,7 +48,7 @@ module CoreMIDI
48
48
  # @return [Boolean]
49
49
  def puts(*args)
50
50
  case args.first
51
- when Array then puts_bytes(*args.first)
51
+ when Array then args.each { |arg| puts(*arg) }
52
52
  when Fixnum then puts_bytes(*args)
53
53
  when String then puts_bytestr(*args)
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffi-coremidi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ari Russo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-18 00:00:00.000000000 Z
11
+ date: 2014-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi