Created
October 24, 2015 22:46
-
-
Save matiasmasca/628fa724d700e17455e7 to your computer and use it in GitHub Desktop.
RVM Project Workflow - Ruby Project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# RVM Project Workflow | |
- Crear GemSet en RVM | |
$ rvm gemset create miGemsetApp | |
$ rvm gemset use miGemsetApp | |
$ rvm gemset use ruby-2.2.0@miGemsetApp | |
#Antes. | |
$ rvm --rvmrc ruby-2.2.0@miGemsetApp # Esto crea el archivo .rvmrc que necesita permisos de confianza para ejecutar lo que tenga adentro. | |
#Nuevo Workflow. | |
- Crear archivo: .ruby-version | |
$ rvm --ruby-version use ruby-2.2.0 | |
- Crear el archivo: .versions-conf | |
$ rvm --create --versions-conf use ruby-2.2.0@miGemsetApp | |
# Nota: para trabajar Off-line con RVM https://rvm.io/rvm/offline | |
# Nota: el simbolo $ no debe escribirse es solo para identificar la terminal de comandos. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment