midi-communications-macos 0.7.0 → 0.7.1
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/.github/workflows/notify-plugin.yml +17 -0
- data/.yardoc/checksums +1 -1
- data/.yardoc/objects/root.dat +0 -0
- data/README.md +2 -2
- data/lib/midi-communications-macos/version.rb +1 -1
- data/midi-communications-macos.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7cdcf0de03006f853e1d7409a1244d54745be9df4632ecf9c087842cf734c1a6
|
|
4
|
+
data.tar.gz: 32e4cc31cdd130ef65c7e88cbb04e5416dff03d20f29c35d79c8dd11c7c868a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d20ab2b8d2195f5b5eab628d1e01410e5aa807e258a3ca11b19f5f907ac6f792052fbdb159133fb0d3a578ccf419050f8c2bc1ca82d91cfdbe54aeaad527231
|
|
7
|
+
data.tar.gz: 4c00bf861fb053029c60a3c47dbadf4eda57ef143d25463f481455efe4d74ddab62b2d5fb62d5b2bebf169c08c9ffa9f70508ee94f820891ece92f8bf6d2cac0
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
name: Notify Plugin Rebuild
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [master]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
notify:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
steps:
|
|
11
|
+
- name: Trigger nota-plugin rebuild
|
|
12
|
+
uses: peter-evans/repository-dispatch@v3
|
|
13
|
+
with:
|
|
14
|
+
token: ${{ secrets.PLUGIN_REBUILD_PAT }}
|
|
15
|
+
repository: javier-sy/nota-plugin
|
|
16
|
+
event-type: source-updated
|
|
17
|
+
client-payload: '{"repo": "${{ github.repository }}", "sha": "${{ github.sha }}"}'
|
data/.yardoc/checksums
CHANGED
|
@@ -3,7 +3,7 @@ lib/midi-communications-macos/api.rb e7fdbff63b0276d9ef646d88fe5ebb4edf8715a4
|
|
|
3
3
|
lib/midi-communications-macos/device.rb d823560d724a292578a57ca16ce82dcce148f449
|
|
4
4
|
lib/midi-communications-macos/entity.rb 604d32ee40fd1dd30dd8747fd26af034ebe3554d
|
|
5
5
|
lib/midi-communications-macos/source.rb e280d652cb8d2710141eeda15a9dabf64ebb38bb
|
|
6
|
-
lib/midi-communications-macos/version.rb
|
|
6
|
+
lib/midi-communications-macos/version.rb f01f46ce7ac31087028f36177ab9cc2b3e5a76d9
|
|
7
7
|
lib/midi-communications-macos/endpoint.rb fda768561c8dde90e97ffdd7f6dc8162919dd9ef
|
|
8
8
|
lib/midi-communications-macos/destination.rb 380c740d36b1ff5b39f8b1dedb500d405ea78344
|
|
9
9
|
lib/midi-communications-macos/type_conversion.rb 1438b365fbd2eb023f18301db0cbe866cef78425
|
data/.yardoc/objects/root.dat
CHANGED
|
Binary file
|
data/README.md
CHANGED
|
@@ -15,9 +15,9 @@ This library is part of a suite of Ruby libraries for MIDI:
|
|
|
15
15
|
| MIDI Data parsing | [MIDI Parser](https://github.com/javier-sy/midi-parser) |
|
|
16
16
|
| MIDI communication with Instruments and Control Surfaces | [MIDI Communications](https://github.com/javier-sy/midi-communications) |
|
|
17
17
|
| Low level MIDI interface to MacOS | [MIDI Communications MacOS Layer](https://github.com/javier-sy/midi-communications-macos) |
|
|
18
|
+
| Low level MIDI interface to Windows | [MIDI Communications Windows Layer](https://github.com/javier-sy/midi-communications-windows) |
|
|
18
19
|
| Low level MIDI interface to Linux | **TO DO** (by now [MIDI Communications](https://github.com/javier-sy/midi-communications) uses [alsa-rawmidi](http://github.com/arirusso/alsa-rawmidi)) |
|
|
19
20
|
| Low level MIDI interface to JRuby | **TO DO** (by now [MIDI Communications](https://github.com/javier-sy/midi-communications) uses [midi-jruby](http://github.com/arirusso/midi-jruby))|
|
|
20
|
-
| Low level MIDI interface to Windows | **TO DO** (by now [MIDI Communications](https://github.com/javier-sy/midi-communications) uses [midi-winm](http://github.com/arirusso/midi-winmm)) |
|
|
21
21
|
|
|
22
22
|
This library is based on [Ari Russo's](http://github.com/arirusso) library [ffi-coremidi](https://github.com/arirusso/ffi-coremidi).
|
|
23
23
|
|
|
@@ -108,6 +108,6 @@ As explained by **Ari Russo** regarding his library **ffi-coremidi**:
|
|
|
108
108
|
|
|
109
109
|
## License
|
|
110
110
|
|
|
111
|
-
[MIDI Communications MacOS Layer](https://github.com/javier-sy/midi-communications-macos) Copyright (c) 2021-
|
|
111
|
+
[MIDI Communications MacOS Layer](https://github.com/javier-sy/midi-communications-macos) Copyright (c) 2021-2026 [Javier Sánchez Yeste](https://yeste.studio), licensed under LGPL 3.0 License
|
|
112
112
|
|
|
113
113
|
[ffi-coremidi](https://github.com/arirusso/ffi-coremidi) Copyright (c) 2011-2017 [Ari Russo](http://arirusso.com), licensed under Apache License 2.0 (see the file LICENSE.ffi-coremidi)
|
|
@@ -3,7 +3,7 @@ require_relative 'lib/midi-communications-macos/version'
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'midi-communications-macos'
|
|
5
5
|
s.version = MIDICommunicationsMacOS::VERSION
|
|
6
|
-
s.date = '
|
|
6
|
+
s.date = '2026-09-07'
|
|
7
7
|
s.summary = 'Realtime MIDI IO with Ruby for OSX'
|
|
8
8
|
s.description = 'Access the Apple Core MIDI framework API with Ruby.'
|
|
9
9
|
s.authors = ['Javier Sánchez Yeste']
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: midi-communications-macos
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Javier Sánchez Yeste
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 2026-09-07 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: ffi
|
|
@@ -138,6 +138,7 @@ executables: []
|
|
|
138
138
|
extensions: []
|
|
139
139
|
extra_rdoc_files: []
|
|
140
140
|
files:
|
|
141
|
+
- ".github/workflows/notify-plugin.yml"
|
|
141
142
|
- ".gitignore"
|
|
142
143
|
- ".version"
|
|
143
144
|
- ".yardoc/checksums"
|