πŸ’ŽRuby

Install Ruby on your computer

Rubygems - It is a package manager for Ruby modules (called gems)

Bundler - Allows you to specify which gems your project depends on

Select your Operating System

Installing Ruby

Check the Ruby installation

Open cmd or PowerShell and run:

ruby -v

Check the RubyGems installation

Open cmd or PowerShell and run:

gem -v

If it returns the version of both then it is installed correctly!

Installing bundler

Open cmd or PowerShell and run:

gem install bundler

Last updated