midi-parser 0.5.0 → 0.5.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-parser/version.rb +1 -1
- data/midi-parser.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: 6875d86789d6f9289d54fecacb9cc9c9699edf77eec792ae8ad31a159b3d69e1
|
|
4
|
+
data.tar.gz: d730a71998fd9bfd66cc3cf11efd9617cec5100451671b8721b8a305b2f380dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ae2d327004e7ec76cc85fdec9d138842f7580af2228bf88aeb1de96fc5bd1e793d6bf158597d4be689a1da3920a56f6c38413722c7366308823617f2dc969e6
|
|
7
|
+
data.tar.gz: b3ccc6f6f96ed4f74814681ea743f7c8e436f18ba8a1314babda0c0edf03d774f922b2fa3b71495beb0734a7db10c2862c99cb76fcd794db04500eea622c28fc
|
|
@@ -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** |
|
|
17
18
|
| Low level MIDI interface to JRuby | **TO DO** |
|
|
18
|
-
| Low level MIDI interface to Windows | **TO DO** |
|
|
19
19
|
|
|
20
20
|
This library is based on [Ari Russo's](http://github.com/arirusso) library [Nibbler](https://github.com/arirusso/nibbler).
|
|
21
21
|
|
|
@@ -175,6 +175,6 @@ Thanks to [Ari Russo](http://github.com/arirusso) for his ruby library [Nibbler]
|
|
|
175
175
|
|
|
176
176
|
## License
|
|
177
177
|
|
|
178
|
-
[MIDI Parser](https://github.com/javier-sy/midi-parser) Copyright (c) 2021-
|
|
178
|
+
[MIDI Parser](https://github.com/javier-sy/midi-parser) Copyright (c) 2021-2026 [Javier Sánchez Yeste](https://yeste.studio), licensed under LGPL 3.0 License
|
|
179
179
|
|
|
180
180
|
[Nibbler](https://github.com/arirusso/nibbler) Copyright (c) 2011-2015 [Ari Russo](http://arirusso.com), licensed under Apache License 2.0 (see the file LICENSE.nibbler)
|
data/lib/midi-parser/version.rb
CHANGED
data/midi-parser.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ require_relative 'lib/midi-parser/version'
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'midi-parser'
|
|
5
5
|
s.version = MIDIParser::VERSION
|
|
6
|
-
s.date = '
|
|
6
|
+
s.date = '2026-09-07'
|
|
7
7
|
s.summary = 'A Ruby library for parsing MIDI Event Messages'
|
|
8
8
|
s.description = 'MIDI Parser is a library for parsing MIDI Event Messages received from any MIDI device 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-parser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.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: midi-events
|
|
@@ -132,6 +132,7 @@ executables: []
|
|
|
132
132
|
extensions: []
|
|
133
133
|
extra_rdoc_files: []
|
|
134
134
|
files:
|
|
135
|
+
- ".github/workflows/notify-plugin.yml"
|
|
135
136
|
- ".gitignore"
|
|
136
137
|
- ".version"
|
|
137
138
|
- ".yardopts"
|