ruby-patterns

Installation
SKILL.md

Ruby Patterns Skill

Tier 1: Quick Reference - Common Idioms

Conditional Assignment

# Set if nil
value ||= default_value

# Set if falsy (nil or false)
value = value || default_value

# Safe navigation
user&.profile&.avatar&.url

Array and Hash Shortcuts

Related skills
Installs
21
GitHub Stars
8
First Seen
Jan 24, 2026