From: Brian Candler Date: 2010-04-27T20:48:59+09:00 Subject: Re: Missing base64 library in Ruby1.9, cannot run cloudkit Bejvas Jod wrote: > Hi, > I install cloudkit. I have followed the steps in the manual > (http://getcloudkit.com/curl.html), but when I execute "rackup > config.ru", I get this error message: > > /usr/lib/ruby1.9/gems/1.9.0/gems/oauth-0.4.0/lib/oauth/helper.rb:2:in > `require': no such file to load -- base64 (LoadError) Try this at the command line: $ irb19 --simple-prompt >> require 'base64' => true >> RUBY_DESCRIPTION => "ruby 1.9.2dev (2009-07-18 trunk 24186) [i686-linux]" If it fails, it's probably because you have an old, development version of 1.9. Switch forward to 1.9.1 or later, or back to 1.8.7. -- Posted via http://www.ruby-forum.com/.