midi-communications-macos 0.5.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 +7 -0
- data/.gitignore +10 -0
- data/Gemfile +10 -0
- data/LICENSE +674 -0
- data/LICENSE.ffi-coremidi +13 -0
- data/LICENSE.midiator +22 -0
- data/LICENSE.prp +22 -0
- data/README.md +118 -0
- data/Rakefile +10 -0
- data/examples/input.rb +25 -0
- data/examples/list_endpoints.rb +9 -0
- data/examples/output.rb +23 -0
- data/examples/sysex_output.rb +12 -0
- data/lib/midi-communications-macos/api.rb +259 -0
- data/lib/midi-communications-macos/destination.rb +142 -0
- data/lib/midi-communications-macos/device.rb +110 -0
- data/lib/midi-communications-macos/endpoint.rb +109 -0
- data/lib/midi-communications-macos/entity.rb +106 -0
- data/lib/midi-communications-macos/source.rb +234 -0
- data/lib/midi-communications-macos/type_conversion.rb +18 -0
- data/lib/midi-communications-macos.rb +26 -0
- data/midi-communications-macos.gemspec +24 -0
- metadata +84 -0
    
        metadata
    ADDED
    
    | @@ -0,0 +1,84 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 | 
            +
            name: midi-communications-macos
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 0.5.0
         | 
| 5 | 
            +
            platform: ruby
         | 
| 6 | 
            +
            authors:
         | 
| 7 | 
            +
            - Javier Sánchez Yeste
         | 
| 8 | 
            +
            autorequire:
         | 
| 9 | 
            +
            bindir: bin
         | 
| 10 | 
            +
            cert_chain: []
         | 
| 11 | 
            +
            date: 2021-11-15 00:00:00.000000000 Z
         | 
| 12 | 
            +
            dependencies:
         | 
| 13 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 14 | 
            +
              name: ffi
         | 
| 15 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 16 | 
            +
                requirements:
         | 
| 17 | 
            +
                - - "~>"
         | 
| 18 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            +
                    version: '1.15'
         | 
| 20 | 
            +
                - - ">="
         | 
| 21 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 22 | 
            +
                    version: 1.15.4
         | 
| 23 | 
            +
              type: :runtime
         | 
| 24 | 
            +
              prerelease: false
         | 
| 25 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 26 | 
            +
                requirements:
         | 
| 27 | 
            +
                - - "~>"
         | 
| 28 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 29 | 
            +
                    version: '1.15'
         | 
| 30 | 
            +
                - - ">="
         | 
| 31 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 32 | 
            +
                    version: 1.15.4
         | 
| 33 | 
            +
            description: Access the Apple Core MIDI framework API with Ruby.
         | 
| 34 | 
            +
            email:
         | 
| 35 | 
            +
            - javier.sy@gmail.com
         | 
| 36 | 
            +
            executables: []
         | 
| 37 | 
            +
            extensions: []
         | 
| 38 | 
            +
            extra_rdoc_files: []
         | 
| 39 | 
            +
            files:
         | 
| 40 | 
            +
            - ".gitignore"
         | 
| 41 | 
            +
            - Gemfile
         | 
| 42 | 
            +
            - LICENSE
         | 
| 43 | 
            +
            - LICENSE.ffi-coremidi
         | 
| 44 | 
            +
            - LICENSE.midiator
         | 
| 45 | 
            +
            - LICENSE.prp
         | 
| 46 | 
            +
            - README.md
         | 
| 47 | 
            +
            - Rakefile
         | 
| 48 | 
            +
            - examples/input.rb
         | 
| 49 | 
            +
            - examples/list_endpoints.rb
         | 
| 50 | 
            +
            - examples/output.rb
         | 
| 51 | 
            +
            - examples/sysex_output.rb
         | 
| 52 | 
            +
            - lib/midi-communications-macos.rb
         | 
| 53 | 
            +
            - lib/midi-communications-macos/api.rb
         | 
| 54 | 
            +
            - lib/midi-communications-macos/destination.rb
         | 
| 55 | 
            +
            - lib/midi-communications-macos/device.rb
         | 
| 56 | 
            +
            - lib/midi-communications-macos/endpoint.rb
         | 
| 57 | 
            +
            - lib/midi-communications-macos/entity.rb
         | 
| 58 | 
            +
            - lib/midi-communications-macos/source.rb
         | 
| 59 | 
            +
            - lib/midi-communications-macos/type_conversion.rb
         | 
| 60 | 
            +
            - midi-communications-macos.gemspec
         | 
| 61 | 
            +
            homepage: http://rubygems.org/gems/midi-communications-macos
         | 
| 62 | 
            +
            licenses:
         | 
| 63 | 
            +
            - LGPL-3.0
         | 
| 64 | 
            +
            metadata: {}
         | 
| 65 | 
            +
            post_install_message:
         | 
| 66 | 
            +
            rdoc_options: []
         | 
| 67 | 
            +
            require_paths:
         | 
| 68 | 
            +
            - lib
         | 
| 69 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 70 | 
            +
              requirements:
         | 
| 71 | 
            +
              - - "~>"
         | 
| 72 | 
            +
                - !ruby/object:Gem::Version
         | 
| 73 | 
            +
                  version: '2.7'
         | 
| 74 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 75 | 
            +
              requirements:
         | 
| 76 | 
            +
              - - ">="
         | 
| 77 | 
            +
                - !ruby/object:Gem::Version
         | 
| 78 | 
            +
                  version: '0'
         | 
| 79 | 
            +
            requirements: []
         | 
| 80 | 
            +
            rubygems_version: 3.1.6
         | 
| 81 | 
            +
            signing_key:
         | 
| 82 | 
            +
            specification_version: 4
         | 
| 83 | 
            +
            summary: Realtime MIDI IO with Ruby for OSX
         | 
| 84 | 
            +
            test_files: []
         |