Skip to content

Instantly share code, notes, and snippets.

@frankyonnetti
Last active February 17, 2021 00:31
Show Gist options
  • Select an option

  • Save frankyonnetti/21d7eb0028e5bc28dca31e7107d574a0 to your computer and use it in GitHub Desktop.

Select an option

Save frankyonnetti/21d7eb0028e5bc28dca31e7107d574a0 to your computer and use it in GitHub Desktop.
Ruby - rbenv environments #ruby
# https://gorails.com/setup/osx/10.12-sierra
# https://github.com/rbenv/rbenv
# list all available versions:
$ rbenv install -l
# install a Ruby version:
$ rbenv install 2.1.0
# ensure that the target version for your project
# is the one you want by checking:
$ rbenv local
# or
$ rbenv version
# check location where gems are being installed:
$ gem env home
# install gems
$ gem install GEM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment