lib/capistrano/tasks/bundle_rsync.rake in capistrano-bundle_rsync-0.4.2 vs lib/capistrano/tasks/bundle_rsync.rake in capistrano-bundle_rsync-0.4.3
- old
+ new
@@ -3,20 +3,20 @@
require 'fileutils'
require 'parallel'
require 'capistrano/bundle_rsync/bundler'
namespace :bundle_rsync do
- def config
+ def bundle_rsync_config
Capistrano::BundleRsync::Config
end
- def bundler
- @bundler ||= Capistrano::BundleRsync::Bundler.new(self)
+ def bundle_rsync_bundler
+ @bundle_rsync_bundler ||= Capistrano::BundleRsync::Bundler.new(self)
end
- def scm
- @scm ||=
+ def bundle_rsync_scm
+ @bundle_rsync_scm ||=
if fetch(:bundle_rsync_scm).to_s == 'local_git'
require 'capistrano/bundle_rsync/local_git'
set :bundle_rsync_local_release_path, repo_url
Capistrano::BundleRsync::LocalGit.new(self)
else
@@ -26,76 +26,76 @@
end
namespace :bundler do
task :install do
run_locally do
- if config.skip_bundle
+ if bundle_rsync_config.skip_bundle
info "Skip bundle"
else
- bundler.install
+ bundle_rsync_bundler.install
end
end
end
task :rsync do
run_locally do
- if config.skip_bundle
+ if bundle_rsync_config.skip_bundle
info "Skip bundle rsync"
else
- bundler.rsync
+ bundle_rsync_bundler.rsync
end
end
end
end
desc 'Check that the repository is reachable'
task :check do
run_locally do
- scm.check
+ bundle_rsync_scm.check
end
end
desc 'Clone the repo to the cache'
task :clone do
run_locally do
- scm.clone
+ bundle_rsync_scm.clone
end
end
desc 'Update the repo mirror to reflect the origin state'
task update: :'bundle_rsync:clone' do
run_locally do
- scm.update
+ bundle_rsync_scm.update
end
end
desc 'Copy repo to releases'
task create_release: :'bundle_rsync:update' do
run_locally do
- scm.create_release
+ bundle_rsync_scm.create_release
end
end
# additional extra tasks of bundle_rsync scm
desc 'Rsync releases'
task :rsync_release do
run_locally do
- scm.rsync_release
+ bundle_rsync_scm.rsync_release
end
end
# additional extra tasks of bundle_rsync scm
desc 'Rsync shared'
task :rsync_shared do
run_locally do
- scm.rsync_shared
+ bundle_rsync_scm.rsync_shared
end
end
desc 'Determine the revision that will be deployed'
task :set_current_revision do
run_locally do
- scm.set_current_revision
+ bundle_rsync_scm.set_current_revision
end
end
after 'bundle_rsync:create_release', 'bundle_rsync:bundler:install'
after 'bundle_rsync:bundler:install', 'bundle_rsync:rsync_release'