Installation Flashcards
what is RVM and what does it stand for?
Ruby Version Manager
a command-line tool which allows you to easily install, manage, and work with multiple ruby environments from interpreters to sets of gems.
what is Homebrew?
A commonly used package manager on macOS.
Installing Ruby using Homebrew is easy:
$ brew install ruby
what is rbenv?
a Ruby Version Manager
what command allows you to use RubyGems?
gem
what command allows you to install RubyGems?
gem install [gem_name]
what is the Gemfile?
a simple solution for organizing gems and their dependencies in a central location.
how do you use pry gem for debugging?
add require “pry” and insert a binding.pry in your file
when a new pry session is opened via binding.pry and you’re done debugging, what command continues executing the program?
Ctrl + D