This articlerelies excessively onreferences toprimary sources. Please improve this article by addingsecondary or tertiary sources. Find sources: "RubyGems" – news ·newspapers ·books ·scholar ·JSTOR(July 2021) (Learn how and when to remove this message) |
Stable release | |
---|---|
Repository | |
Written in | Ruby |
Operating system | Cross-platform |
Type | Package manager |
License | Ruby License |
Website | rubygems |
Total gems | 173,000+ |
---|---|
Total downloads | 109+ billion |
RubyGems is apackage manager for theRuby programming language that provides a standard format for distributing Ruby programs andlibraries (in a self-contained format called a "gem"), a tool designed to easily manage the installation of gems, and aserver for distributing them. It was created byChad Fowler,Jim Weirich,David Alan Black,Paul Brannan andRichard Kilmer in 2004.[2]
The interface for RubyGems is acommand-line tool calledgem which can install and manage libraries (the gems).[3] RubyGems integrates with Ruby run-timeloader to help find and load installed gems from standardized library folders. Though it is possible to use a private RubyGemsrepository, the public repository is most commonly used for gem management.
The public repository helps users find gems, resolvedependencies and install them. RubyGems is bundled with the standard Ruby package as of Ruby 1.9.[4]
Development on RubyGems started in November 2003 and was released to the public on March 14, 2004, orPi Day 2004.[5]
It was created byChad Fowler,Jim Weirich,David Alan Black,Paul Brannan andRichard Kilmer during RubyConf 2004.[2]
In 2010, the default public repository for gems moved from gems.rubyforge.org to rubygems.org, which is still in use. Also, RubyGems development was moved toGitHub in 2010. Though RubyGems has existed since Ruby 1.8, it was not a part of the standard Ruby distribution until Ruby 1.9.[citation needed]
There were 38 releases from 2004 to 2010.[5]
Previously,compatibility with RubyGems and Ruby varied. Many versions of RubyGems are almost fully incompatible with many versions of Ruby and some versions had key features unusable. For example, Ruby 1.9 came with RubyGems 1.3.7 in its standard distribution, but RubyGems 1.4.x was not compatible with Ruby 1.9. This meant that updating RubyGems on Ruby 1.9 was not possible until RubyGems 1.5.0 was released in 2011, two years after the first stable release of Ruby 1.9.[6] These compatibility issues led to a rapid development of RubyGems, switching to a 4–6 week release schedule, and more version releases.[5]
There were 117 releases from 2011 to 2016. 45 versions were released in 2013, which is the highest number of releases in a year for RubyGems.[5]
Every gem contains a name, version and platform. Gems work only on ruby designed for a particular platform based onCPU architecture and operating-system type and version.[7]
Each gem consists of:
The code organization follows the following structure for a gem calledgem_name:
gem_name/├── bin/│ └── gem_name├── lib/│ └── gem_name.rb├── test/│ └── test_gem_name.rb├── README├── Rakefile└── gem_name.gemspec
Since gems run their own code in an application it may lead to various security issues due to installation of malicious gems. The creator of a malicious gem may be able to compromise the user's system or server.[8]
A number of methods have been developed to counter the security threat: