François Beausoleil wrote:
> Hi,
> 
> 2007/5/23, Enrique Comba Riepenhausen <ecomba / mac.com>:
>> > irb(main):002:0> exit
>>
>> You should use the following now:
>>
>> require 'rubygems'
>> require 'activerecord'
> 
> Apparently, it didn't solve Enrique's problem.
> 
> Enrique, I believe the way to do it now is:
> 
> require "rubygems"
> gem "activerecord", "= 0.14.4"
> require "activerecord"
> 
> The #gem call activates the gem, and the require is the regular
> require to load a library.
> 
> Hope that helps !

Shouldn't:

require "activerecord"

be:

require "active_record"

?


-- 
Posted via http://www.ruby-forum.com/.