rules/ruby/coding-style.md
This file extends common/coding-style.md with Ruby and Rails specific content.
# frozen_string_literal: true to new Ruby files when the project uses that convention.rubocop-rails-omakase and customize only where the codebase has a real convention.bundle exec rubocop
bundle exec rubocop -A
bin/rails, bin/rake, and checked-in binstubs over globally installed commands.rescue StandardError blocks unless they re-raise or preserve enough context for operators.ActiveSupport::Notifications or the app's logger for operational events; do not leave puts, pp, or debugger in committed application code.See skill: backend-patterns for broader service/repository layering guidance.