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