On 2/5/07, Jan Friedrich <frdrch / gmail.com> wrote:
> Daniel Berger wrote:
> >    t.ruby_opts << '-rturn'
> This doesn't work if you have installed turn via rubygems:
>
>    /usr/bin/ruby1.8: no such file to load -- turn (LoadError)
>    rake aborted!
>
> You cannot load gems with the -r option of the ruby interpreter.
>


t.ruby_opts << '-rubygems'
t.ruby_opts << '-rturn'

That should work, correct?

TwP