Skip to main content

Retraction – Installing Ruby 1.9 on a Mac.

Nothing is worse than having to print a retraction, one of my posts is on the lightest way of installing a new Ruby on the Mac.

Turns out the rbenv and ruby-build do indeed require Xcode. Even though the website and even some people believe it's not required, ruby-build needs a compiler. Suddenly the case for rbenv is nil, null and void. I am a bit upset that this requirement is not clear from the documentation, and its harder configuration, coupled with the need to always preface your Rails commands with 'bundle exec' and its lack of advantage of rvm in size, make rbenv a looser and I can't recommend it anymore.

I have just switched to RVM, which while it requires the behemoth of Xcode or possibly just the 'command line tools for Xcode' is a far better choice. RVM or Ruby Version Manager, allows you to create gem sets per project that then can be shared with the project itself. It's command line interface is super polished, and there is way more information on how to incorporate it into editors like Textmate or Sublime Text 2.

Since this is now my recommended way of installing Ruby 1.9.3 (I still recommend JRuby too, because that one truly doesn't require Xcode and if you just want to play with Ruby or learn about the differences, it's great.) I'll tell you how to configure Textmate for it.

You'll need to do two things (maybe three).

  • Go to Preferences > Advanced Settings > Shell Variables
  • Set TM_RUBY to the result of `which rvm-auto-ruby` 
  • If you want to run hash-bang (#!) files on rvm's ruby as well alter the PATH variable to have the path to whatever ruby you're using as default there, ahead of the system path: ` /Users/david/.rvm/rubies/ruby-1.9.3-p286/bin/:/usr/bin:` for example (optional)
  • Some bundles (like the Textmate Bundle) require 1.8.7 to run properly so alter their hash-bang statements to hardcode to the system ruby. So instead of saying `#! /usr/bin/env ruby` they say `#! /usr/bin/ruby`. This took me a long time to figure out but it's invaluable.
Installing RVM is a piece of cake. You'll need Xcode installed, then go to the RVM website and run the curl command there and it should work like a charm. Their website even has info on how to integrate it to Textmate, though it's missing the Path alteration I labelled as optional above.




Comments

Popular posts from this blog

What Medieval Economics can teach us about tariffs.

As a teen, I used to play Dungeons and Dragons (D&D) with my friends. This started an interest in the medieval period that led to me taking a medieval history class in college just to understand the period more. Over the years I've also read great books like " Dungeon, Fire and Sword " about the crusades (I recommend the book) and yet with all that knowledge it wasn't until recently that it occurred to me I had a completely wrong understanding of economics in the Medieval Period. "Viking helmets, sword and footwear" by eltpics is licensed under CC BY-NC 2.0 In my D&D games, players who are adventures battling monsters and creatures would need equipment and on the trips to town, they'd get resupplied with their adventuring necessities. I'd run these moments referencing my imagination of what it must have been and fantasy books I'd read. There be an inn with a raucous bar, a gruffly black-smith, if a city also a weapon and armor sm...

Testing with Cucumber, Sinatra and Capybara

Everything you need to know There are many elements you need to simultaneously learn to do effective testing of your code. Because some of these elements are very simple a lot of explanations just jump over what you need to know and give them up as obvious. Let’s start with a list of the things you need to learn: Gherkin (the language of Cucumber) ——> super easy Capybara (the DSL that controls the browser tests) Rspec (the DSL in which the actual pass/fail tests are written.) None of these are hard. But having to learn all at the same time can seem daunting. But it’s not! It’s easy peasy but takes time. :-/ It took me three days to get a handle on this. And I hope by reading this you’ll get a handle on it much much quicker. Let’s start with Cucumber first. Cucumber Five things you need to know about Cucumber: Cucumber tests are located on a features folder that have plain text files with a .feature extension and written in Gherkin . The .feature files contain t...

Best Tech Books

Best Tech Books for Programming Language Learning I'm a bit of a polyglot no only in human languages (English, Spanish, Japanese) but also with programming languages. I found that the best way to get a deep understanding of the programming field, I needed to be broad. I got introduced to Bruce Tate's 7 languages in 7 weeks series right when I was starting to learn Ruby and found the cross-language trends to be very useful in knowing what to learn for the future.  So here is a list of Programming Books that I found good for learning a language. These are the must have books in my opinion to "get" or "grok" the language. Most of these books I have not finished but they're so good I can recommend them for other language learners and polyglots. All these books should accelerate your learning dramatically.  Poignant Guide to Ruby Ruby: POODR and _why's Poignant Guide to Ruby .  Okay, so _why's Poignant Guide to Ruby is the reason I fell in love with ...