Sha256: 2b2e225ffcb9e724f64f71ba538aa908af3efb08307c0e2159721fa76dc3256d
Contents?: true
Size: 1.44 KB
Versions: 3
Compression:
Stored size: 1.44 KB
Contents
Capistrano::Configuration.instance(true).load do set :rubygem_paths, '/usr/bin/gem' namespace :rubygems do desc "Performs a rubygems upgrade, updates all gems and cleans up old ones" task :full_update, :roles => :app do rubygems.upgrade rubygems.update rubygems.cleanup end desc "Upgrades the rubygem package installation" task :upgrade, :roles => :app do Array(rubygem_paths).each { |path| sudo "#{path} update --system" } end desc "Updates all installed gems" task :update, :roles => :app do Array(rubygem_paths).each { |path| sudo "#{path} update" } end desc "Removes old gems which are now outdated" task :cleanup, :roles => :app do Array(rubygem_paths).each { |path| sudo "#{path} cleanup" } end desc "Install a gem on your servers servers" task :install, :roles => :app do puts "Enter the name of the gem you'd like to install:" gem_name = $stdin.gets.chomp logger.info "trying to install '#{gem_name}'" Array(rubygem_paths).each {|path| sudo "#{path} install #{gem_name} --no-ri --no-rdoc" } end desc "Uninstall a gem from the release servers" task :uninstall, :roles => :app do puts "Enter the name of the gem you'd like to remove:" gem_name = $stdin.gets.chomp logger.info "trying to remove '#{gem_name}'" Array(rubygem_paths).each { |path| sudo "#{path} uninstall #{gem_name} -x" } end end end
Version data entries
3 entries across 3 versions & 2 rubygems