capistrano/capistrano

View on GitHub
lib/capistrano/upload_task.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "rake/file_creation_task"

module Capistrano
  class UploadTask < Rake::FileCreationTask
    def needed?
      true # always needed because we can't check remote hosts
    end
  end
end