rails-style-guide | Skill Performance & Reviews | TopRankSkills

TopRank Skills

Home / Skills / tools / rails-style-guide

rails-style-guide

maintained by manuelmeurer

star 0 account_tree 1 verified_user MIT License
bolt View GitHub

name: rails-style-guide description: Rails code style conventions. Use when working with Rails projects, running commands, or writing Rails code.

Rails Style Guide

Apply these conventions when working with Rails projects.

Guidelines

  • In HAML, put Ruby expressions on their own line; avoid inline =.

Binstubs

When running Rails executables, always check for binstubs first:

  1. Check for binstub: Look for bin/rails, bin/rspec, bin/rubocop, etc.
  2. Use binstub if exists: Run bin/rails instead of bundle exec rails
  3. Fallback to bundle exec: Only use bundle exec if no binstub exists
# Good - check for binstub first
bin/rails db:migrate
bin/rspec spec/models/user_spec.rb

# Only if binstubs don't exist
bundle exec rails db:migrate
bundle exec rspec spec/models/user_spec.rb

When bundle exec fails: Inform the user that a binstub might resolve the issue, as binstubs can have different load paths or configurations.

Namespaces

Treat each Rails app as divided into namespaces. Common ones are web (the marketing website), admin (the admin area), and users (the login area for users).

For each namespace:

  • Routes live in config/routes/NAMESPACE.rb
  • Views live in app/views/NAMESPACE
  • Controllers live in app/controllers/NAMESPACE
  • Styles live in app/assets/stylesheets/NAMESPACE.scss
  • JavaScript lives in app/javascripts/NAMESPACE.js
  • I18n locale files live in config/locales/NAMESPACE.LOCALE.yml

Never create a new namespace unless the user explicitly prompts it. If you are unsure which namespace a change belongs to, ask the user.

Setting datetime/date columns to current time

When setting a datetime or date column to the current time/date, check if the model includes HasTimestamps[column]. If so, use the bang method instead of direct assignment:

# Bad - direct assignment when HasTimestamps is available
message.update!(sent_at: Time.current)

# Good - use the bang method from HasTimestamps
message.sent!

chat Comments (0)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 0
GitHub Forks 1
Created Jan 2026
Last Updated 5 months ago
tools tools code quality

Related Skills

creating-pr
chevron_right
reviewing-pr
chevron_right
packmind-standard-creator
chevron_right
packmind-standard-creator
chevron_right
code-review-router
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.