Module: MagicRecipes::Rbenv

Defined in:
lib/magic_recipes/rbenv.rb

Overview

RVM - Deploy-Recipes

unused for now

Tasks:
Callbacks:

Class Method Summary collapse

Class Method Details

.load_into(configuration) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/magic_recipes/rbenv.rb', line 14

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