I would like to try out the restful stuff, but when using a rake task for freezing edge rails I receive the following message: ERROR: Must have subversion (svn) available in the PATH to lock this application to Edge Rails. -- Is this a PATH set up for rake or for ruby? If so - where to set the Path value? Or is this the Windows system environment PATH variable? In that case what does (svn) mean -- the path to svn.exe or to the repository folder? -- Posted via http://www.ruby-forum.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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Do you have subversion installed? It looks like rake is trying to execute svn to checkout the current version of edge, but it can''t find the svn executable (it''s not in your path). Adam On 7/24/07, Ronny Klaeboe <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > I would like to try out the restful stuff, but when using a rake task > for freezing edge rails I receive the following message: > ERROR: Must have subversion (svn) available in the PATH to lock this > application to Edge Rails. -- Is this a PATH set up for rake or for > ruby? If so - where to set the Path value? Or is this the Windows > system environment PATH variable? In that case what does (svn) mean -- > the path to svn.exe or to the repository folder? > -- > Posted via http://www.ruby-forum.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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Ronny Klaeboe wrote:> I would like to try out the restful stuff, but when using a rake task > for freezing edge rails I receive the following message: > ERROR: Must have subversion (svn) available in the PATH to lock this > application to Edge Rails. -- Is this a PATH set up for rake or for > ruby? If so - where to set the Path value? Or is this the Windows > system environment PATH variable? In that case what does (svn) mean -- > the path to svn.exe or to the repository folder?-- Solved: The error was indirectly due to a faulty specification of a Windows system path variable. Paths that include spaces cause problems, so I removed the spaces from the folder name. (Enclosing the path name in quotation marks may also work.) -- Posted via http://www.ruby-forum.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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Adam Cohen wrote:> Do you have subversion installed? It looks like rake is trying to > execute svn to checkout the current version of edge, but it can''t find > the svn executable (it''s not in your path). > > AdamThanks - yes, the failing path was to subversion. /Ronny -- Posted via http://www.ruby-forum.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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---