Hello, Be aware: I''m really new to (Ruby and) Rails... I was wondering how I could best track the rails svn development. Currently, I have installed the rails gems (action*, railties). I also have checked out the rails svn trunk. If I change something in my working copy of rails and want to test it on a rails project, do I need to manually recreate ruby gems of all things and install it? In other words, how can I make sure my ruby installation picks up the changes from my local rails workarea when doing rails development? On a side note, I''m currently on the Windows platform, so unix symlink, etc stuff available. --- Jeroen Janssen
> On a side note, I''m currently on the Windows platform, so > unix symlink, etc stuff available.Damn typo, ofcourse this should have read... "NO unix symlink, etc stuff available" :) --- Jeroen Janssen
On Jul 13, 2005, at 12:24 PM, Jeroen Janssen wrote:> I was wondering how I could best track the rails svn development.Do a svn checkout of the rails trunk to RAILS_ROOT/vendor/rails: cd path/to/your/app/vendor svn co http://dev.rubyonrails.com/svn/rails/trunk rails If there is a rails dir in your vendor dir your app will automatically prefer it over the gems. Do a svn update in the vendor/rails dir to bring down new Rails changes. jeremy
On Wednesday 13 July 2005 21:24, Jeroen Janssen wrote:> I was wondering how I could best track the rails svn development.See http://wiki.rubyonrails.com/rails/show/EdgeRails Also, if you''re using subversion for your own projects, search the wiki for subversion. Michael -- Michael Schuerig Failures to use one''s frontal lobes mailto:michael-q5aiKMLteq4b1SvskN2V4Q@public.gmane.org can result in the loss of them. http://www.schuerig.de/michael/ --William H. Calvin
> [mailto:rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] Namens Michael Schuerig > > I was wondering how I could best track the rails svn development. > > See > > http://wiki.rubyonrails.com/rails/show/EdgeRails > > Also, if you''re using subversion for your own projects, > search the wiki for subversion.Thanks, maybe someone with access to the trac site can put this link on http://dev.rubyonrails.com/ too (since this is probably just the information needed when working on a patch for Rails). Bye, Jeroen Janssen