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
minutes of a programmer
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:
Post a Comment