
Ruby
Get flash to fully experience Pearltrees
Python Vs Ruby Code Examples
Python Vs Ruby
Playing with my son on Lego NXT requires me to get Ruby in the mix just for fun. Here is the install notes that I used to get everything going. cd /tmp # Ruby Serial svn export http://ruby-serialport.rubyforge.org/svn/trunk ruby-serial cd ruby-serial ruby extconf.rb make sudo make install cd .. # Install libusb svn export https://libusb.svn.sourceforge.net/svnroot/libusb/trunk/libusb libusb cd libusb sh autogen.sh ./configure make sudo make install cd .. # Ruby USB svn export svn://svn@svn.a-k-r.org/akr/ruby-usb/trunk ruby-usb cd ruby-usb ruby extconf.rb make sudo make install cd .. # Ruby NXT gem install ruby-nxt # Try it in IRB require 'rubygems' require 'nxt_comm' comm = NXTComm.new comm.connected? comm.get_device_info comm.get_firmware_version <p style="text-align:right;color:#A8A8A8"></p>
Using Ruby to Control Lego Mindstorms NXT - Tim Dysinger
Ruby Array | Jonathan Hui
All that you need to get Ruby-Processing going is Ruby (1.8 or 1.9) and Java (1.5 or 1.6) — and your machine probably came with both of those baked-in. Then, naturally, you’ll need to get your hands on Ruby-Processing itself. It’s available as a Ruby Gem: sudo gem install ruby-processing Ruby-Processing provides you with the rp5 command, which is what you’ll use to run all the Ruby-Processing commands. Try typing rp5 --help to get a brief overview of the options.
Getting Started · jashkenas/ruby-processing Wiki
RVM: Ruby Version Manager - RVM Basics
$ rvm help # Documentation Index Wondering why you should use RVM? For a start, not only does RVM make installing multiple ruby interpreters / runtimes easy and consistent, it provides features such as gemsets that aren't typically supported out of the box on most ruby installs. RVM also lets you use different rubies in a manner that wont mess with your existing ruby install (unless you tell it to) as well as letting you run multiple different rubies in seperate terminals concurrently! Getting startedDeploying with JRuby
About this Book 224 pages Published: Release: P1.0 (2012-07-09) ISBN: 978-1-93435-697-5 NEW : See this video on using Torquebox for high-availability deployment on the JVM .Xcode 4.3 MacRuby compatible problem workaround - 東 . Blog
Using the Ruby Development Tools plug-in for Eclipse
RubyCocoa
http://rubycocoa.sourceforge.net/doc/ http://www.rubycocoa.com Ruby is a dream language to write Cocoa code in -- you get automatic garbage collection and an algol syntax, eg: box = [[ NSBox alloc] initWithFrame: NSZeroRect ]; [box setEnabled:NO]; would be written in Ruby as:It's exciting times for MacRuby developers. MacRuby 0.10 was recently released, and Xcode 4 is finally out. And while Apple has announced that MacRuby will be included in Lion, it will be a private framework, not a public one. For now, you need to include the MacRuby framework inside your application bundle . This post shows you how.

