midi-communications-macos 0.6.1 → 0.7.0
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/.version +6 -0
- data/.yardoc/checksums +9 -0
- data/.yardoc/complete +0 -0
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardoc/proxy_types +0 -0
- data/.yardopts +6 -0
- data/LICENSE +159 -668
- data/README.md +6 -13
- data/doc/MIDICommunicationsMacOS/API/CF.html +124 -0
- data/doc/MIDICommunicationsMacOS/API/HostTime.html +124 -0
- data/doc/MIDICommunicationsMacOS/API/MIDIPacket.html +137 -0
- data/doc/MIDICommunicationsMacOS/API/MIDIPacketList.html +137 -0
- data/doc/MIDICommunicationsMacOS/API/MIDISysexSendRequest.html +137 -0
- data/doc/MIDICommunicationsMacOS/API.html +912 -0
- data/doc/MIDICommunicationsMacOS/Destination.html +1983 -0
- data/doc/MIDICommunicationsMacOS/Device.html +1102 -0
- data/doc/MIDICommunicationsMacOS/Endpoint.html +1665 -0
- data/doc/MIDICommunicationsMacOS/Entity.html +971 -0
- data/doc/MIDICommunicationsMacOS/Source.html +1784 -0
- data/doc/MIDICommunicationsMacOS/TypeConversion.html +393 -0
- data/doc/MIDICommunicationsMacOS.html +214 -0
- data/doc/_index.html +250 -0
- data/doc/class_list.html +54 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +58 -0
- data/doc/css/style.css +503 -0
- data/doc/file.README.html +275 -0
- data/doc/file_list.html +59 -0
- data/doc/frames.html +22 -0
- data/doc/index.html +275 -0
- data/doc/js/app.js +344 -0
- data/doc/js/full_list.js +242 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +542 -0
- data/doc/top-level-namespace.html +110 -0
- data/lib/midi-communications-macos/api.rb +7 -1
- data/lib/midi-communications-macos/destination.rb +86 -20
- data/lib/midi-communications-macos/device.rb +52 -18
- data/lib/midi-communications-macos/endpoint.rb +31 -5
- data/lib/midi-communications-macos/entity.rb +20 -6
- data/lib/midi-communications-macos/source.rb +79 -19
- data/lib/midi-communications-macos/type_conversion.rb +11 -4
- data/lib/midi-communications-macos/version.rb +2 -1
- data/lib/midi-communications-macos.rb +37 -0
- data/midi-communications-macos.gemspec +11 -9
- metadata +83 -4
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: midi-communications-macos
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Javier Sánchez Yeste
|
|
@@ -89,6 +89,48 @@ dependencies:
|
|
|
89
89
|
- - ">="
|
|
90
90
|
- !ruby/object:Gem::Version
|
|
91
91
|
version: 2.0.0
|
|
92
|
+
- !ruby/object:Gem::Dependency
|
|
93
|
+
name: yard
|
|
94
|
+
requirement: !ruby/object:Gem::Requirement
|
|
95
|
+
requirements:
|
|
96
|
+
- - "~>"
|
|
97
|
+
- !ruby/object:Gem::Version
|
|
98
|
+
version: '0.9'
|
|
99
|
+
type: :development
|
|
100
|
+
prerelease: false
|
|
101
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
102
|
+
requirements:
|
|
103
|
+
- - "~>"
|
|
104
|
+
- !ruby/object:Gem::Version
|
|
105
|
+
version: '0.9'
|
|
106
|
+
- !ruby/object:Gem::Dependency
|
|
107
|
+
name: redcarpet
|
|
108
|
+
requirement: !ruby/object:Gem::Requirement
|
|
109
|
+
requirements:
|
|
110
|
+
- - "~>"
|
|
111
|
+
- !ruby/object:Gem::Version
|
|
112
|
+
version: '3.6'
|
|
113
|
+
type: :development
|
|
114
|
+
prerelease: false
|
|
115
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
116
|
+
requirements:
|
|
117
|
+
- - "~>"
|
|
118
|
+
- !ruby/object:Gem::Version
|
|
119
|
+
version: '3.6'
|
|
120
|
+
- !ruby/object:Gem::Dependency
|
|
121
|
+
name: webrick
|
|
122
|
+
requirement: !ruby/object:Gem::Requirement
|
|
123
|
+
requirements:
|
|
124
|
+
- - "~>"
|
|
125
|
+
- !ruby/object:Gem::Version
|
|
126
|
+
version: '1.8'
|
|
127
|
+
type: :development
|
|
128
|
+
prerelease: false
|
|
129
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
130
|
+
requirements:
|
|
131
|
+
- - "~>"
|
|
132
|
+
- !ruby/object:Gem::Version
|
|
133
|
+
version: '1.8'
|
|
92
134
|
description: Access the Apple Core MIDI framework API with Ruby.
|
|
93
135
|
email:
|
|
94
136
|
- javier.sy@gmail.com
|
|
@@ -97,6 +139,13 @@ extensions: []
|
|
|
97
139
|
extra_rdoc_files: []
|
|
98
140
|
files:
|
|
99
141
|
- ".gitignore"
|
|
142
|
+
- ".version"
|
|
143
|
+
- ".yardoc/checksums"
|
|
144
|
+
- ".yardoc/complete"
|
|
145
|
+
- ".yardoc/object_types"
|
|
146
|
+
- ".yardoc/objects/root.dat"
|
|
147
|
+
- ".yardoc/proxy_types"
|
|
148
|
+
- ".yardopts"
|
|
100
149
|
- Gemfile
|
|
101
150
|
- LICENSE
|
|
102
151
|
- LICENSE.ffi-coremidi
|
|
@@ -104,6 +153,33 @@ files:
|
|
|
104
153
|
- LICENSE.prp
|
|
105
154
|
- README.md
|
|
106
155
|
- Rakefile
|
|
156
|
+
- doc/MIDICommunicationsMacOS.html
|
|
157
|
+
- doc/MIDICommunicationsMacOS/API.html
|
|
158
|
+
- doc/MIDICommunicationsMacOS/API/CF.html
|
|
159
|
+
- doc/MIDICommunicationsMacOS/API/HostTime.html
|
|
160
|
+
- doc/MIDICommunicationsMacOS/API/MIDIPacket.html
|
|
161
|
+
- doc/MIDICommunicationsMacOS/API/MIDIPacketList.html
|
|
162
|
+
- doc/MIDICommunicationsMacOS/API/MIDISysexSendRequest.html
|
|
163
|
+
- doc/MIDICommunicationsMacOS/Destination.html
|
|
164
|
+
- doc/MIDICommunicationsMacOS/Device.html
|
|
165
|
+
- doc/MIDICommunicationsMacOS/Endpoint.html
|
|
166
|
+
- doc/MIDICommunicationsMacOS/Entity.html
|
|
167
|
+
- doc/MIDICommunicationsMacOS/Source.html
|
|
168
|
+
- doc/MIDICommunicationsMacOS/TypeConversion.html
|
|
169
|
+
- doc/_index.html
|
|
170
|
+
- doc/class_list.html
|
|
171
|
+
- doc/css/common.css
|
|
172
|
+
- doc/css/full_list.css
|
|
173
|
+
- doc/css/style.css
|
|
174
|
+
- doc/file.README.html
|
|
175
|
+
- doc/file_list.html
|
|
176
|
+
- doc/frames.html
|
|
177
|
+
- doc/index.html
|
|
178
|
+
- doc/js/app.js
|
|
179
|
+
- doc/js/full_list.js
|
|
180
|
+
- doc/js/jquery.js
|
|
181
|
+
- doc/method_list.html
|
|
182
|
+
- doc/top-level-namespace.html
|
|
107
183
|
- examples/input.rb
|
|
108
184
|
- examples/list_endpoints.rb
|
|
109
185
|
- examples/output.rb
|
|
@@ -118,10 +194,13 @@ files:
|
|
|
118
194
|
- lib/midi-communications-macos/type_conversion.rb
|
|
119
195
|
- lib/midi-communications-macos/version.rb
|
|
120
196
|
- midi-communications-macos.gemspec
|
|
121
|
-
homepage: https://
|
|
197
|
+
homepage: https://github.com/javier-sy/midi-communications-macos
|
|
122
198
|
licenses:
|
|
123
|
-
- LGPL-3.0
|
|
124
|
-
metadata:
|
|
199
|
+
- LGPL-3.0-or-later
|
|
200
|
+
metadata:
|
|
201
|
+
homepage_uri: https://github.com/javier-sy/midi-communications-macos
|
|
202
|
+
source_code_uri: https://github.com/javier-sy/midi-communications-macos
|
|
203
|
+
documentation_uri: https://www.rubydoc.info/gems/midi-communications-macos
|
|
125
204
|
rdoc_options: []
|
|
126
205
|
require_paths:
|
|
127
206
|
- lib
|