James,

I just ran into this problem myself.  It turned out to be because of a
"require 'gettext/utils'".  I moved this requirement into the tasks
that actually needed it (there were two of them, make_mo and
update_po).  This fixed the problem.

I would suggest looking to see if you have any require statements that
you can move into the tasks that actually need them.

However, that said, the following are must be at the top of Rakefile

<<EOF
require(File.join(File.dirname(__FILE__), 'config', 'boot'))

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

require 'tasks/rails'
EOF

Hope that helps!
Tim

On Jul 17, 8:07 am, "James Herdman" <[EMAIL PROTECTED]> wrote:
> Thanks for the tip.  I'll check it out.
>
> On 7/17/07, Michael Koziarski <[EMAIL PROTECTED]> wrote:
>
>
>
> > > I'm having a wee bit of trouble building documentation for Edge Rails
> > > (rev 7187).  When I attempt to run the doc:rails taask (or any doc:*
> > > task), I get the following error:
>
> > This works fine for me.
>
> > > Has anyone else encountered this issue?  I can't seem to find any
> > > references to it on Google.
>
> > You could ask the rdoc maintainers on ruby-talk.  They'll probably be
> > able to help.
>
> > --
> > Cheers
>
> > Koz


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Core" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-core?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to