Skip to content

Instantly share code, notes, and snippets.

@Zeitwaechter
Last active April 30, 2022 18:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zeitwaechter/e93da71a58af3c5d0823c137b128d71a to your computer and use it in GitHub Desktop.
Save Zeitwaechter/e93da71a58af3c5d0823c137b128d71a to your computer and use it in GitHub Desktop.
MacOS Setup
  1. Install brew
  2. run xcode-select --install
  3. run brew install rbenv ruby-build
  4. add to ~/.config/fish/config.fish to add ruby via env selection.
    set -g fish_user_paths "$HOME/.rbenv/bin" $fish_user_paths
    
    ### Executables
    ## eval "(rbenv init -)"
    # (process substitution)
    source (rbenv init - | psub)
    
  5. run rbenv install -l for latest version
  6. run rbenv install X.X.X to install latest version
  7. run rbenv local X.X.X to set latest version locally
  8. run rbenv global X.X.X to set latest version globally
  9. brew install tmate
  10. install necessary gems
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment