forked from aberant/midiator
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from arirusso/0.5.0
0.5.0
- Loading branch information
Showing
22 changed files
with
346 additions
and
402 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
group :test do | ||
gem "minitest", "~> 5.5", ">= 5.5.0" | ||
gem "mocha", "~> 1.1", ">= 1.1.0" | ||
gem "rake", "~> 10.4", ">= 10.4.2" | ||
gem "shoulda-context", "~> 1.2", ">= 1.2.1" | ||
end | ||
|
||
gem "ffi", "~> 1.9", ">= 1.9.6" | ||
gem 'ffi', '~> 1.15', '>= 1.15.5' | ||
gem 'rake', '~> 13.0', '>= 13.0.6', groups: %i[development test] | ||
gem 'rspec', '~> 3.11', '>= 3.11.0', groups: %i[test] | ||
gem 'rubocop', '~> 1.25', '>= 1.25.1', groups: %i[development test] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
require "rake" | ||
require "rake/testtask" | ||
# frozen_string_literal: true | ||
|
||
Rake::TestTask.new(:test) do |t| | ||
t.libs << "test" | ||
t.test_files = FileList["test/**/*_test.rb"] | ||
t.verbose = true | ||
end | ||
begin | ||
require 'rspec/core/rake_task' | ||
|
||
RSpec::Core::RakeTask.new(:spec) | ||
|
||
task :default => [:test] | ||
task default: :spec | ||
rescue LoadError | ||
# no rspec available | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
# frozen_string_literal: true | ||
|
||
# | ||
# ffi-coremidi | ||
# Realtime MIDI IO with Ruby for OSX | ||
# | ||
# (c)2011-2017 Ari Russo | ||
# (c)2011-2022 Ari Russo | ||
# https://github.com/arirusso/ffi-coremidi | ||
# | ||
|
||
# Libs | ||
require "ffi" | ||
require "forwardable" | ||
require 'ffi' | ||
require 'forwardable' | ||
|
||
# Modules | ||
require "coremidi/api" | ||
require "coremidi/endpoint" | ||
require "coremidi/type_conversion" | ||
require 'coremidi/api' | ||
require 'coremidi/endpoint' | ||
require 'coremidi/type_conversion' | ||
|
||
# Classes | ||
require "coremidi/entity" | ||
require "coremidi/device" | ||
require "coremidi/source" | ||
require "coremidi/destination" | ||
require 'coremidi/entity' | ||
require 'coremidi/device' | ||
require 'coremidi/source' | ||
require 'coremidi/destination' | ||
|
||
module CoreMIDI | ||
VERSION = "0.4.1" | ||
VERSION = '0.5.0' | ||
end |
Oops, something went wrong.