SonicIQ are hiring - Junior Rails Developer Wanted in UK

Posted by jamie Thu, 08 Mar 2007 12:20:14 GMT

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.

Posted in , , , ,  | 1 comment

Handy Subversion Rake task

Posted by jamie Sat, 29 Jul 2006 09:22:07 GMT

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.

Posted in , ,  | 7 comments