Skip to content

Instantly share code, notes, and snippets.

View chuckwagoncomputing's full-sized avatar

David Holdeman chuckwagoncomputing

View GitHub Profile
@FrankDMartinez
FrankDMartinez / gist:1358286
Created November 11, 2011 15:36
Raking Shoes on OS 10.5
/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
@rubiojr
rubiojr / mr_status_bar_app.rb
Created November 30, 2009 11:47
MacRuby StatusBar Application
#
# 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:'