midi-events 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/README.md +2 -2
- data/lib/midi-events/version.rb +1 -1
- data/midi-events.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: 602a3c78e6cf883d73da4f9c9d61ccfe4f0f3f45dd5f40a5f8839df56f7e810b
|
|
4
|
+
data.tar.gz: 3b962896e4ac3f52bec0eb51d99d374a16d7b623f13c9f821f345ed194477a03
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2382f58d986e81ef9871f4db321b2267a9cb1f1095bbb4e0a272aed78c78c08ae3bfe0894894745be4aa446f9fc9024dcdefd15da0066c78a721487217b7ca05
|
|
7
|
+
data.tar.gz: f4a228f306c5bade9a7c31b00ec74868407f4c1e41efb7f1ecc4a32a5415b04bbb40bf7f402e09bc0b2ab7f32ccc04c589ee6cdf309ac4fb6b2ffce98561bd60
|
|
@@ -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/README.md
CHANGED
|
@@ -13,9 +13,9 @@ This library is part of a suite of Ruby libraries for MIDI:
|
|
|
13
13
|
| MIDI Data parsing | [MIDI Parser](https://github.com/javier-sy/midi-parser) |
|
|
14
14
|
| MIDI communication with Instruments and Control Surfaces | [MIDI Communications](https://github.com/javier-sy/midi-communications) |
|
|
15
15
|
| Low level MIDI interface to MacOS | [MIDI Communications MacOS Layer](https://github.com/javier-sy/midi-communications-macos) |
|
|
16
|
+
| Low level MIDI interface to Windows | [MIDI Communications Windows Layer](https://github.com/javier-sy/midi-communications-windows) |
|
|
16
17
|
| 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)) |
|
|
17
18
|
| 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))|
|
|
18
|
-
| 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)) |
|
|
19
19
|
|
|
20
20
|
This library is based on [Ari Russo's](http://github.com/arirusso) library [MIDI Message](https://github.com/arirusso/midi-message).
|
|
21
21
|
|
|
@@ -199,7 +199,7 @@ Thanks to [Ari Russo](http://github.com/arirusso) for his ruby library [MIDI Mes
|
|
|
199
199
|
|
|
200
200
|
## License
|
|
201
201
|
|
|
202
|
-
[MIDI Events](https://github.com/javier-sy/midi-events) Copyright (c) 2021-
|
|
202
|
+
[MIDI Events](https://github.com/javier-sy/midi-events) Copyright (c) 2021-2026 [Javier Sánchez Yeste](https://yeste.studio), licensed under LGPL 3.0 License
|
|
203
203
|
|
|
204
204
|
[MIDI Message](https://github.com/arirusso/midi-message) Copyright (c) 2011-2015 [Ari Russo](http://arirusso.com), licensed under Apache License 2.0 (see the file LICENSE.midi-message)
|
|
205
205
|
|
data/lib/midi-events/version.rb
CHANGED
data/midi-events.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ require_relative 'lib/midi-events/version'
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'midi-events'
|
|
5
5
|
s.version = MIDIEvents::VERSION
|
|
6
|
-
s.date = '
|
|
6
|
+
s.date = '2026-09-07'
|
|
7
7
|
s.summary = 'A Ruby simple library for creating MIDI Event Messages'
|
|
8
8
|
s.description = 'MIDI Events is a library for creating MIDI Event Messages that can be sent to MIDI Instruments through other libraries such as midi-communications or unimidi'
|
|
9
9
|
s.authors = ['Javier Sánchez Yeste']
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: midi-events
|
|
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: minitest
|
|
@@ -119,6 +119,7 @@ executables: []
|
|
|
119
119
|
extensions: []
|
|
120
120
|
extra_rdoc_files: []
|
|
121
121
|
files:
|
|
122
|
+
- ".github/workflows/notify-plugin.yml"
|
|
122
123
|
- ".gitignore"
|
|
123
124
|
- ".version"
|
|
124
125
|
- ".yardopts"
|