This post originated from an RSS feed registered with .NET Buzz
by Maruis Marais.
Original Post: How to fix the iconv require error in Ruby 1.9
Feed Title: exceptionz
Feed URL: http://feeds.feedburner.com/Exceptionz
Feed Description: I am an XP, TDD, OO and .NET enthusiast. Things like Design Patterns makes my pulse race, I love learning exciting new things and to share my thoughts and techniques with the world. So join me and together we can explore the awesome world of software development
So you’re trying out the pre-release version of Rails 3.0 with Ruby 1.9 and you keep on getting the following error:
activesupport-3.0.pre/lib/active_support/inflector/transliterate.rb:2:in `require’: no such file to load – iconv (LoadError)
If you are using rvm to install and switch between different versions of ruby then follow the following steps:
Install readline using rvm: rvm install readline
Now install [...]