midi-events 0.6.0 → 0.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b4c6b371f3724d81ba71d4a959157ca90c4980487d7fab6a0cb0eb8f7e213144
4
- data.tar.gz: 4f0b7d72db5555e5a394826f2bcdd1f6289a402e11374681b7e4b25da9912b43
3
+ metadata.gz: 467a3b15281b377463cb4fe954b09b6c26148118736955b630c0cac88539d6cf
4
+ data.tar.gz: 4d45e5b1b965ee8cba80377f42439f3b1f4022bd3447309c5e372408cae8cd6c
5
5
  SHA512:
6
- metadata.gz: 97693ed4f0f30c90ecdc8bd926189d1e5af14da9057a49e00c9f5238279728ff31ae2b082f9ac61e3aef5c8050903d3d4b4e05c26c4d08df5479b155d9f02f81
7
- data.tar.gz: a2f9f2437fe56c576b5c5ac8f4395407ac7a3d7ba0504105987e499265b983a638e6b8b1f6edef71559a019cbc75399724e5c1be58485349b1e0ebcbd4d7a69f
6
+ metadata.gz: 7c8c57ed47326f0ff649c78c02501063d5153d33de950b50d1e30be90f976e45d480e352e040b577d5fe37aec21727b172ce06f119406aa1fb353c78ed0baf53
7
+ data.tar.gz: 149601d10fcb3fbc239f34c87e90ec40447de1010a22be25521a84b9672a36f9cbeb918edcf20592533394a4d46b5bfe01987867a017f852b4cd392450eaa82d
@@ -0,0 +1,3 @@
1
+ module MIDIEvents
2
+ VERSION = '0.6.1'.freeze
3
+ end
data/lib/midi-events.rb CHANGED
@@ -22,6 +22,4 @@ require 'midi-events/type_conversion'
22
22
  require 'midi-events/context'
23
23
  require 'midi-events/messages'
24
24
 
25
- module MIDIEvents
26
- VERSION = '0.5.1'.freeze
27
- end
25
+ require_relative 'midi-events/version'
data/midi-events.gemspec CHANGED
@@ -1,6 +1,8 @@
1
+ require_relative 'lib/midi-events/version'
2
+
1
3
  Gem::Specification.new do |s|
2
4
  s.name = 'midi-events'
3
- s.version = '0.6.0'
5
+ s.version = MIDIEvents::VERSION
4
6
  s.date = '2025-08-23'
5
7
  s.summary = 'A Ruby simple library for creating MIDI Event Messages'
6
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'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: midi-events
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Sánchez Yeste
@@ -98,6 +98,7 @@ files:
98
98
  - lib/midi-events/system_exclusive.rb
99
99
  - lib/midi-events/system_message.rb
100
100
  - lib/midi-events/type_conversion.rb
101
+ - lib/midi-events/version.rb
101
102
  - lib/midi.yml
102
103
  - midi-events.gemspec
103
104
  homepage: https://github.com/javier-sy/midi-events