Check out the tutorial and other learning resources and examples available for MacRuby.

17-18 Apr 2009 » Golden Gate Ruby Conference
San Francisco, CA, USA
Rich Presents MacRuby & HotCocoa
15-16 May 2009 » Ruby on OS X
Amsterdam, Holland, The Netherlands
Laurent & Rich Presenting MacRuby and Hotcocoa
27-29 Aug 2009 » Lone Star Ruby Conference
Austin, Texas, USA
Rich Gives a MacRuby & HotCocoa Tutorial
It is a great pleasure to announce the immediate availability of MacRuby 0.3! We have been working very hard on this release for several months and, while it’s still a developer release, we hope that you will give it a try. Get it while it’s still hot!
First of all, MacRuby now ships with a core library called HotCocoa, something which greatly simplifies Cocoa programming while also using simple Ruby idioms. Rich Kilmer is the man behind this amazing work. You will find several examples in /Developer/Examples/Ruby/MacRuby/HotCocoa, and some initial bits of documentation in http://www.macruby.org/trac/wiki/HotCocoa (which will be improved very soon).
require 'hotcocoa' include HotCocoa application do |app| window :size => [100, 50] do |win| b = button :title => 'Hello' b.on_action { puts 'World!' } win << b end end
We also support Interface Builder in this release. You can define classes, outlets and actions in a MacRuby Xcode project and they will automatically appear in Interface Builder. We have a new Ruby metadata parser that works for both RubyCocoa and MacRuby files. The parser is written in MacRuby and uses the amazing ripper extension that comes with it to extract the parser tokens.
Finally, of course, lots of bugs were fixed. We now have a pretty good Cocoa support and can run most of the LimeChat application (which is currently being ported from RubyCocoa). We also re-implemented the PagePacker application from Objective-C, which now ships as an example in the MacRuby distribution. On the pure Ruby side of things, a lot of bugs have been fixed and we are now able to run some commands of RubyGems. Installing simple gems should work. Don’t expect MacRuby to run Rails yet, though!
MacRuby is progressively turning more stable with every release. Please give it a try and report any problem you find! If you want to join the project and help, volunteers are also greatly welcome!