Skip to content

Instantly share code, notes, and snippets.

@gavvvr
Last active February 14, 2023 18:13
Show Gist options
  • Save gavvvr/c1cad2212358ec2d0913108fdd4da596 to your computer and use it in GitHub Desktop.
Save gavvvr/c1cad2212358ec2d0913108fdd4da596 to your computer and use it in GitHub Desktop.
Ruby version management on Windows using Ubuntu WSL
RUBY_VERSION=2.7.1
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.8.0
. $HOME/.asdf/asdf.sh
asdf plugin install ruby
sudo apt install -y build-essential libssl-dev zlib1g-dev
asdf install ruby $RUBY_VERSION
asdf global ruby $RUBY_VERSION
@gavvvr
Copy link
Author

gavvvr commented Sep 26, 2020

Intellij/Rubymine setup:
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment