ruby-gems-bundler

Installation
SKILL.md

Ruby Gems and Bundler

Master Ruby's package management system with gems and Bundler. Learn to manage dependencies, create gems, and publish to RubyGems.

Bundler Basics

Gemfile

source 'https://rubygems.org'

# Ruby version
ruby '3.3.0'

# Production gems
gem 'rails', '~> 7.1'
gem 'pg', '>= 1.1'
gem 'puma', '~> 6.0'
Installs
21
GitHub Stars
166
First Seen
Jan 22, 2026
ruby-gems-bundler — thebushidocollective/han