odevpedro

How do I organize my development environment

Environmental organization Using asdf in the Linux environment to manage various versions of different programming languages. Ways to use: https://asdf-vm.com/guide/getting-started.html

// Adding the plugin for a particular language
asdf plugin add ruby
// Listing all versions of the particular language
asdf list all ruby
// Updating the language plugin
asdf plugin-update ruby
// Installing the latest version
asdf install ruby latest
// Setting the global version (valid across all folders)
asdf global ruby 3.1.0