ruby/rubygems

Library packaging and distribution for Ruby.

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 43 minutes ago
Type:Server / PlatformCategory(s):Build Systems & Package ManagersDeveloper Tools
Added to GitGenius on September 17th, 2026
Created on April 16th, 2010
Open Issues & Pull Requests: 165 (+0)
GitHub issues: Enabled
Number of forks: 1,938
Total Stargazers: 3,968 (+0)
Total Subscribers: 166 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 12.4 hours
Mean response time: 59.1 days
90th percentile: 56.8 days
Tracked items: 579

Most active contributors

Sign in to see contributor activity.

How this project is maintained

About 10% of issues opened in the past year have never received a reply. 84% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "status: triage" is answered fastest, typically in about 5 hours, while "type: bug report" waits about 28 hours. 77% of issues opened in the past year have been closed, leaving a working backlog. Three people close 82% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 90
New in 7 days: 1
Closed in 7 days: 6
Avg open age: 937 days
Stale 30+ days: 59
Stale 90+ days: 54

Recent activity

Opened in 7 days: 1
Closed in 7 days: 6
Comments in 7 days: 8
Events in 7 days: 15

Top labels

  • Bundler (392)
  • RubyGems (116)
  • status: feedback required (41)
  • type: feature request (31)
  • type: bug report (23)
  • status: triage (20)
  • status: ready (10)
  • help wanted (6)

Detailed Description

RubyGems is a package management framework for Ruby that handles library packaging, distribution, and dependency resolution.

RubyGems solves the problem of managing Ruby libraries and their dependencies by providing a centralized system for installing, creating, and loading packages called gems. The framework operates through the gem command-line tool, which downloads packages from RubyGems.org and installs them into your Ruby environment. Bundler, developed within this repository and shipped with Ruby, extends this capability by ensuring consistent dependency resolution across machines. It manages gem dependencies by automatically downloading required packages, checking version compatibility, and recording exact installed versions so other developers can replicate the same environment.

Developers working with Ruby should adopt RubyGems because it comes pre-installed with Ruby and is the standard package management solution for the language. The tool suits any Ruby project that needs to manage external libraries or share code with other developers. For applications requiring reproducible builds and consistent dependency versions across team members, Bundler provides the additional layer of version locking and compatibility checking. The project requires Ruby 3.0 or later and recommends using a Ruby version manager like rbenv or chruby rather than OS package managers for installation and upgrades.

The project maintains active development with regular updates to both RubyGems and Bundler, which share version numbers and are released together. The repository includes comprehensive documentation through guides at guides.rubygems.org covering both basic usage and advanced topics like gem publishing. The codebase is written primarily in Ruby and accepts contributions through the standard GitHub workflow, with clear upgrade paths for users to stay current with the latest versions.