September 15, 2008

skip dependencies in Rake

Here is a handy rake task to skip dependencies whenever you want to:

desc 'Skip dependencies of subsequent tasks'
task :skip do
  Rake::Task.tasks.each do |t|
    t.clear_prerequisites
  end
end

0 comments: