This file contains hidden or 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
| /Users/Frank/sandbox/shoes/Rakefile:63: Use RbConfig instead of obsolete and deprecated Config. | |
| ** Invoke default (first_time) | |
| ** Invoke build (first_time) | |
| ** Invoke osx:build (first_time) | |
| ** Invoke osx:build_tasks:pre_build (first_time) | |
| ** Invoke osx:build_tasks:check_ruby_arch (first_time) | |
| ** Execute osx:build_tasks:check_ruby_arch | |
| ** Execute osx:build_tasks:pre_build | |
| ** Invoke build_skel (first_time) | |
| ** Execute build_skel |
This file contains hidden or 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
| # | |
| # Initialize the stuff | |
| # | |
| # We build the status bar item menu | |
| def setupMenu | |
| menu = NSMenu.new | |
| menu.initWithTitle 'FooApp' | |
| mi = NSMenuItem.new | |
| mi.title = 'Hellow from MacRuby!' | |
| mi.action = 'sayHello:' |
NewerOlder