Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Freeze Rails to Edge RC2 via SVN Externals

So you've already frozen to RC1, but need to upgrade to RC2?

cd ~/Sites/railsapp
svn propedit svn:externals vendor
# An editor will pop up, change RC1 to RC2 and save
svn up
svn ci -m "* Upgrade to RC2"


<3 SVN Externals

Bonus tip: I'm a habitual 'svn stat'er, and this helped speed up the process:

svn --ignore-externals stat

Freeze Rails to Edge RC1 via SVN Externals

cd vendor
svn propset svn:externals "rails http://dev.rubyonrails.org/svn/rails/tags/rel_1-2-0_RC1/" .
svn ci
svn up
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS