Sha256: 07766763f850e39bf87347c6fc9110dac956f3aff7b82a1dbaa5552a1f3246e0

Contents?: true

Size: 283 Bytes

Versions: 2

Compression:

Stored size: 283 Bytes

Contents

recipe :rvm do
  description 'This will create .rvmrc file for your app if rvm is available'
  after :capistrano
  
  silently do
    if system 'which rvm > /dev/null'
      in_root do
        run "rvm #{RUBY_VERSION}@#{application_name} --rvmrc --create"
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
playmo-0.1.1 lib/playmo/recipes/rvm_recipe.rb
playmo-0.1.0 lib/playmo/recipes/rvm_recipe.rb