Ruby Tutorial
Ruby CGI
Ruby Advanced
RubyGems is a package manager for the Ruby programming language that provides a standard format for distributing Ruby programs and libraries, which are packaged in "gem" format.
Here is a basic tutorial on how to use RubyGems:
1. Installing a gem
To install a gem, you use the gem install
command. For example, to install the rails
gem you would do:
gem install rails
This command will download and install the latest version of the Rails gem from RubyGems.org.
2. Listing installed gems
To see all the gems that you've installed, use the gem list
command:
gem list
This will print a list of all the installed gems, along with their versions.
3. Uninstalling a gem
To uninstall a gem, you use the gem uninstall
command. For example, to uninstall the rails
gem you would do:
gem uninstall rails
4. Creating a Gemfile
When you're working on a Ruby project, it's a good idea to specify all of the gems that your project depends on in a Gemfile
. This is a file that you create in the root directory of your project.
Here's an example of what a Gemfile
might look like:
source 'https://rubygems.org' gem 'rails', '5.1.1' gem 'pg' gem 'puma' gem 'sass-rails' gem 'uglifier' gem 'coffee-rails' gem 'jquery-rails' gem 'turbolinks' gem 'jbuilder'
In this Gemfile
, the source 'https://rubygems.org'
line specifies that the gems should be downloaded from RubyGems.org. The gem
lines specify the gems that the project depends on. Some gems (like rails
in this case) also have a specific version number.
5. Installing gems from a Gemfile
Once you have a Gemfile
, you can use the bundle install
command to install all of the gems that your project depends on:
bundle install
This command reads the Gemfile
, downloads and installs the specified gems, and then creates a Gemfile.lock
file. This file locks your gems to specific versions, so that all people working on the project use the same versions.
This is a basic introduction to RubyGems. It's an essential tool for any Ruby developer, and it's worth taking the time to learn how to use it effectively.
Creating a gem in Ruby:
Create a new gem using the bundler
gem.
gem install bundler bundle gem my_gem
RubyGems command line usage:
Use the gem
command to interact with RubyGems.
gem install my_gem
Listing installed gems in Ruby: View the list of installed gems.
gem list
Updating gems with RubyGems: Update installed gems to the latest version.
gem update my_gem
Uninstalling gems in Ruby: Remove a gem from your system.
gem uninstall my_gem
RubyGems version management: Specify gem versions in your application.
gem 'my_gem', '~> 1.0'
Specifying gem versions in RubyGems:
Define version constraints in your Gemfile
.
gem 'my_gem', '~> 1.0'
RubyGems dependencies and requirements:
Manage gem dependencies using the Gemfile
.
gem 'my_dependency', '>= 2.0', '< 3.0'
Using Bundler with RubyGems: Bundler manages gem dependencies for your application.
bundle install
Publishing a gem to RubyGems.org: Publish your gem to RubyGems.org.
gem push my_gem-1.0.0.gem
Gemfile and Gemfile.lock in Ruby:
The Gemfile
and Gemfile.lock
specify gem dependencies.
# Gemfile source 'https://rubygems.org' gem 'my_gem', '~> 1.0'
Working with gemspec files in RubyGems: Gemspec files describe gem metadata and dependencies.
# my_gem.gemspec Gem::Specification.new do |spec| spec.name = 'my_gem' spec.version = '1.0.0' # ... other metadata and dependencies end