Sha256: 96ca4096a310a21975a7914f01178e07ee13b08fc981a237acda3cd2bc59c80c

Contents?: true

Size: 722 Bytes

Versions: 24

Compression:

Stored size: 722 Bytes

Contents

Capistrano::Configuration.instance(true).load do
  set :rubygems_version, "1.3.5"

  namespace :rubygems do
    before "rubygems:setup", "ruby:setup"

    desc "install rubygems"
    task :setup, :roles => :app do
      run "wget http://rubyforge.org/frs/download.php/60718/rubygems-#{rubygems_version}.tgz"
      run "tar xvzf rubygems-#{rubygems_version}.tgz"
      run "cd rubygems-#{rubygems_version}; sudo ruby setup.rb"
      run "#{sudo} rm /usr/bin/gem; #{sudo} ln -s /usr/bin/gem1.8 /usr/bin/gem"
    end

    desc "cleanup the files"
    task :cleanup do
      run "cd; rm -rf rubygems-#{rubygems_version}; rm -rf rubygems-#{rubygems_version}.*"
    end
    after "rubygems:setup", "rubygems:cleanup"

  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
crazycode-cap-recipes-0.5.3 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.5.2 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.5.1 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.5.0 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.14 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.13 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.12 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.11 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.10 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.9 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.8 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.6 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.5 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.4 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.3 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.2 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.1 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.4.0 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.3.39.3 lib/cap_recipes/tasks/rubygems/install.rb
crazycode-cap-recipes-0.3.39.2 lib/cap_recipes/tasks/rubygems/install.rb