forked from jimm/midilib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use byte arrays instead of strings for passing around data. All tests…
… now pass for both Ruby 1.8.X and 1.9.X.
- Loading branch information
Jim Menard
committed
Jan 5, 2009
1 parent
f59dbc9
commit 64069b6
Showing
10 changed files
with
150 additions
and
84 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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
# This script installs midilib into the Ruby site-local library directory. | ||
# | ||
# Author:: Jim Menard (mailto:[email protected]) | ||
# Copyright:: Copyright (c) 2003-2008 by Jim Menard | ||
# Copyright:: Copyright (c) 2003-2009 by Jim Menard | ||
# License:: Distributed under the same license as Ruby. | ||
# | ||
|
||
|
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,8 +1,8 @@ | ||
module MIDI | ||
|
||
VERSION_MAJOR = 1 | ||
VERSION_MINOR = 1 | ||
VERSION_TWEAK = 5 | ||
VERSION_MINOR = 2 | ||
VERSION_TWEAK = 0 | ||
Version = "#{VERSION_MAJOR}.#{VERSION_MINOR}.#{VERSION_TWEAK}" | ||
Copyright = 'Copyright (c) 2003-2009 by Jim Menard <[email protected]>' | ||
|
||
|
Oops, something went wrong.