Sha256: 41bbd45b0a2ddea373077c14e0bb2fe3366840dd2eba7be50fa974a2911c1370
Contents?: true
Size: 1.46 KB
Versions: 27
Compression:
Stored size: 1.46 KB
Contents
# encoding: utf-8 module MagicRecipes # = RVM - Deploy-Recipes # # == unused for now # # [Tasks:] # # # [Callbacks:] # # module Rbenv def self.load_into(configuration) configuration.load do # code is taken from railscast #337 set_default :ruby_version, "1.9.3-p125" set_default :rbenv_bootstrap, "bootstrap-ubuntu-10-04" namespace :rbenv do desc "Install rbenv, Ruby, and the Bundler gem" task :install, roles: :app do run "#{sudo} apt-get -y install curl git-core" run "curl -L https://raw.github.com/fesplugas/rbenv-installer/master/bin/rbenv-installer | bash" bashrc = <<-BASHRC if [ -d $HOME/.rbenv ]; then export PATH="$HOME/.rbenv/bin:$PATH" eval "$(rbenv init -)" fi BASHRC put bashrc, "/tmp/rbenvrc" run "cat /tmp/rbenvrc ~/.bashrc > ~/.bashrc.tmp" run "mv ~/.bashrc.tmp ~/.bashrc" run %q{export PATH="$HOME/.rbenv/bin:$PATH"} run %q{eval "$(rbenv init -)"} run "rbenv #{rbenv_bootstrap}" run "rbenv install #{ruby_version}" run "rbenv global #{ruby_version}" run "gem install bundler --no-ri --no-rdoc" run "rbenv rehash" end after "deploy:install", "rbenv:install" end # eof end end end end
Version data entries
27 entries across 27 versions & 1 rubygems