Entries Tagged 'Subversion' ↓

SonicIQ are hiring - Junior Rails Developer Wanted in UK

SonicIQ are looking for a Junior Ruby on Rails Developer.

We are based in Bournemouth, Dorset, UK. Anyone interested in working professionally with Rails on some exciting projects please drop us your CV.

Handy Subversion Rake task

Just read a post from David at Planet Argon showing a way to add un-added files in your Subversion working copy.

I have made this into a simple rake task:

namespace :svn do
  desc "Adds all files with an svn status flag of '?'"
  task(:add_new) { `svn status | awk '/\\?/ {print $2}' | xargs svn add` }
end

Just drop this code in a file called subversion.rake inside the tasks directory. Now you can run rake svn:add_new which will add all new files with an svn status flag of ‘?’ in your working copy.