On May 7, 12:20 am, slava
<slava_mike...-/E1597aS9LQAvxtiuMwx3w@public.gmane.org>
wrote:> I need to use an activerecord model in a ruby script that is run from
> outside rails, so I need to boot rails from my script, otherwise I
> get
> uninitialized constant ActiveRecord
> I tried adding
> require ''config/boot''
> to the script to boot rails before running the script, but that did
> not help..
To load the full rails environment you need to require config/
environment (you might want to investigate script/runner)
Fred