Installing Ruby gems
You can install gems using the gem command-line program. To do this, follow these steps:- Log in to your account using SSH.
-
To make sure you are in your home directory, type the following command at the command line:
-
Use your preferred text editor to edit the .bash_profile file in your home directory. The .bash_profile file should contain the following configuration:
- Save your changes to the .bash_profile file.
-
To make the settings in the .bash_profile file take effect immediately, type the following command:
-
To create a directory for your local gems, type the following command:
-
Use your preferred text editor to create a .gemrc file in your home directory. The .gemrc file sets the GEM_PATH and GEM_HOME variables that are used by the gem program. The gemhome value is set to the full path where the gems will be installed (this is the directory that you created in step 6). The gempath values are set to the gemhome directory, as well as to the system-wide base gems directory. The following text shows an example .gemrc file. Replace username with your own hosting.com account username:
-
To verify that the gem environment has been updated, type the following command:
The output should display GEM PATHS with the values that you set in the .gemrc file.
-
To install a gem, type the following command. Replace gemname with the name of the gem that you want to install:
For example, to install the sass gem, type
gem install sass.👍 Tip To uninstall a gem, type the following command: