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
// Unobfuscate the iRealPro data format | |
// | |
// information and test data taken from: | |
// https://github.com/ironss/accompaniser/blob/master/irealb_parser.lua | |
// https://github.com/ironss/accompaniser/blob/59fd4cfb45447ac77ae7cc2bfca2e25bc9ce218d/test/test_irealb_parser.lua | |
// ******** | |
import Darwin |
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
#!/usr/local/bin/macruby | |
# This example is done with MacRuby and the UIKit framework for Mac OS X | |
# http://chameleonproject.org/ | |
# https://github.com/BigZaphod/Chameleon/ | |
framework 'Cocoa' | |
framework "UIKit" # garbage collected version, the current version of Chameleon ist not known to be GC-safe | |
################### |