I executed the "rake db:create:all" and it gives following error message rake/rdoctask is deprecated. Use rdoc/task instead (in RDoc 2.4.2+) rake aborted! uninitialized constant ActiveSupport::Dependencies::Mutex (See full trace by running task with --trace) I have: rails => 2.3.5,3.0.7 gem => 1.8.5 ruby => 1.8.7 I will appreciate the help Thanks in advance amritpalpathakgne.wordpress.com -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Mon, Jul 4, 2011 at 2:08 AM, Amrit Pal Pathak <amritpalpathak1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> I executed the "rake db:create:all" and it gives following error message > > rake/rdoctask is deprecated. Use rdoc/task instead (in RDoc 2.4.2+) > rake aborted! > uninitialized constant ActiveSupport::Dependencies::Mutex > > (See full trace by running task with --trace) > > I have: > > rails => 2.3.5,3.0.7 > gem => 1.8.5 > I degraded the gem to 1.3.7 ,but it didn''t work >Thanks amritpalpathakgne.wordpress.com -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Mon, Jul 4, 2011 at 2:51 AM, Amrit Pal Pathak <amritpalpathak1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> > > On Mon, Jul 4, 2011 at 2:08 AM, Amrit Pal Pathak < > amritpalpathak1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> I executed the "rake db:create:all" and it gives following error message >> >> rake/rdoctask is deprecated. Use rdoc/task instead (in RDoc 2.4.2+) >> rake aborted! >> uninitialized constant ActiveSupport::Dependencies::Mutex >> >> (See full trace by running task with --trace) >> >> I have: >> >> rails => 2.3.5,3.0.7 >> gem => 1.8.5 >> I degraded the gem to 1.3.7 ,but it didn''t work >> > > There is no solution to this issue ? >Thanks amritpalpathakgne.wordpress.com -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Open your Rakefile and replace "rake/rdoctask" with "rdoc/task" Install rdoc gem and add config.gem ''rdoc'' to your environment file and then you should be good to go. Chirag http://sumeruonrails.com On Mon, Jul 4, 2011 at 10:11 PM, Amrit Pal Pathak <amritpalpathak1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > > On Mon, Jul 4, 2011 at 2:51 AM, Amrit Pal Pathak < > amritpalpathak1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> >> >> On Mon, Jul 4, 2011 at 2:08 AM, Amrit Pal Pathak < >> amritpalpathak1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >>> I executed the "rake db:create:all" and it gives following error message >>> >>> rake/rdoctask is deprecated. Use rdoc/task instead (in RDoc 2.4.2+) >>> rake aborted! >>> uninitialized constant ActiveSupport::Dependencies::Mutex >>> >>> (See full trace by running task with --trace) >>> >>> I have: >>> >>> rails => 2.3.5,3.0.7 >>> gem => 1.8.5 >>> I degraded the gem to 1.3.7 ,but it didn''t work >>> >> >> There is no solution to this issue ? >> > > > Thanks > > amritpalpathakgne.wordpress.com > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Tue, Jul 5, 2011 at 12:15 AM, Chirag Singhal <chirag.singhal-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> Open your Rakefile and replace "rake/rdoctask" with "rdoc/task" > done > Install rdoc gem >done> and add config.gem ''rdoc'' to your environment file >done> and then you should be good to go. > Still it didn''t work.rake db:create:all gives now another error as: >rake aborted! no such file to load -- disguise/tasks (See full trace by running task with --trace)> Thanks for reply !!amritpalpathakgne.wordpress.com -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.