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.
Lightweight ramblings
March 8th, 2007 — General, Mac / OS X, Rails, SonicIQ, Subversion
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.
July 29th, 2006 — Rails, Rake, Subversion
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.