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:
-
Check for binstub: Look for
bin/rails,bin/rspec,bin/rubocop, etc. -
Use binstub if exists: Run
bin/railsinstead ofbundle exec rails -
Fallback to bundle exec: Only use
bundle execif 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)
Sign in to join the discussion and leave a comment.
Skill Details
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!