…Matz's vision for the direction of the MRI ( Matz's Ruby Interpreter), were the most talked about topics at the event. Many sessions gave love to JRuby and Rubinus for addressing these enterprise problems. (And everyone gave love to Matz and his team.) While Rubinus is a fantastic project that should appeal to any Rubyist, it seems clear that JRuby will become the standard for Ruby in the enterprise.
Concurrency, Streaming & Other Big Issues…
Installing a Ruby Interpreter
Since I have Rails applications that I work on that still haven't been migrated to Ruby 1.9.2, I use Ruby Enterprise Edition as my baseline Ruby install.
Optional Install: IConv Package
If you use the Nokogiri gem, you'll probably need this package in order for it to compile. rvm pkg install iconv
Installing Ruby Enterprise Edition
I'm not sure if the CC line is still necessary with the final release of Xcode 4, but with …
Installing a Ruby Interpreter
Since I have Rails applications that I work on that still haven't been migrated to Ruby 1.9.2, I use Ruby Enterprise Edition as my baseline Ruby install.
Install the Readline package
I've always installed the Readline package with my Ruby REE install, so let's do that now. rvm package install readline
Optional Install: IConv Package
One of our projects is using the spreadsheet Ruby gem and that requires the IConv …
…to Ruby, is to test the code on the IRB , the interactive Ruby shell. This tool (or its equivalent on the different versions of the interpreter) executes every piece of code you insert in it, one line at the time. Believe me, trying every code example you may find in your way would really give you a better understanding of how Ruby works. On top of it, it is real fun!
What can I do with Ruby?
Although the main use of Ruby is focused on web development due to the popularity …
If you'd like to make Ruby Enterprise Edition your default Ruby Interpreter, just use the following command: rvm ree --default
Once Passenger has been configured, all that's left to do is restart Apache. You can restart Apache by going to the System Preferences Pane and selecting the Sharing applet. Uncheck and re-check Web Sharing.
You should now be able to add Rails and Rack applications with the Passenger Preference Pane. Note: When opening the Passenger Preference Pane…