Skip to content

Latest commit

 

History

History

RoR

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Rails Debugging and Development Guide

Development Tools and URLs

Rails Development URLs

  • Routes Information: http://localhost:3000/rails/info/routes

    • Lists all available routes in your Rails application
    • Helpful for debugging routing issues
    • Shows controller actions and their corresponding URLs
  • Letter Opener: http://localhost:3000/letter_opener

    • Preview emails in the browser instead of sending them
    • Great for testing email functionality locally

Debugging Tools

Rails Console

rails c  # or rails console
  • Interactive console to test Ruby code
  • Direct database access
  • Test model associations
  • Execute arbitrary Ruby code in your app's environment
rails c
user = User.new                  # Create a new User
user.name = "Test User"          # Set the name of the User
user.save                        # Save the User to the database
user.id                          # Get the ID of the User
user.auth_token                  # Get the auth_token of the User
user.errors                      # Get the errors of the User
user.errors.full_messages        # Get the full messages of the errors
user.destroy                     # Destroy the User


User.all                         # Get all Users
User.first                       # Get the first User
User.last                        # Get the last User
User.count                       # Get the number of Users
User.find(1)                     # Get the User with ID 1
User.find_by(name: "Test User")  # Get the User with name "Test User"    
User.take                        # Get a random User

Rails Logger

Rails.logger.debug "Debug: @user = #{@user}"

Other log levels:

Rails.logger.info "Info message"
Rails.logger.warn "Warning message"
Rails.logger.error "Error message"
Rails.logger.fatal "Fatal message"

Database Commands

Seeding Data

rails db:seed:development:users  # Seed development user data
rails db:seed                    # Run all seed files

Other useful database commands:

rails db:migrate                                               # Run pending migrations
rails db:migrate:status                                        # todo
rails db:rollback                                              # Rollback last migration
rails db:rollback STEP=5                                       # Rollback last 5 migrations
rails db:migrate:down VERSION=VERSION_NUMBER                   # Rollback to a specific version
rails db:reset                                                 # Drop & recreate database
rails db:setup                                                 # Create database, load schema, and initialize with seed data
rails db:drop db:create db:migrate                             # Reset database by dropping, creating, and running migrations
ActiveRecord::Base.connection.tables                           # List all database tables
ActiveRecord::Base.connection.columns('users').map(&:name)     # List all column names of the 'users' table

Rails Migration File Naming Guide

Location

All migration files are stored in the db/migrate/ directory.

Filename Format

YYYYMMDDHHMMSS_migration_name.rb

Examples:

  • 20250402104500_create_users.rb
  • 20250402110000_add_status_to_orders.rb
  • 20250402113000_rename_email_in_customers.rb
rails generate migration CreateUsers

Class Name Format

The migration class name should match the CamelCased version of the file’s suffix.

Examples:

  • 20250402104500_create_users.rbclass CreateUsers
  • 20250402110000_add_status_to_orders.rbclass AddStatusToOrders
  • 20250402113000_rename_email_in_customers.rbclass RenameEmailInCustomers

⚠️ Important: If you rename the migration file, you must update the class name inside the file to match, or Rails will raise a NameError about a missing class.

Using the change Method

Rails migrations often use the change method instead of up and down for simpler reversible actions.
Rails can automatically reverse the following methods:

  • add_column
  • add_index
  • add_timestamps
  • create_table
  • remove_timestamps
  • rename_column
  • rename_index
  • rename_table

For more complex migrations, use explicit up and down methods.

Model

Student model represents a single student, so it's singular. The students table holds all of the students, so it's plural.

Create a model

rails g model Student first_name:string last_name:string gender:string

Code Quality Tools

RuboCop

Basic usage:

bundle exec rubocop                         # Check code style

Auto-correction options:

bundle exec rubocop -a                      # Safe auto-corrections (--auto-correct)
bundle exec rubocop -A                      # Safe + unsafe auto-corrections (--auto-correct-all)

Common RuboCop flags:

rubocop --only Style/StringLiterals    # Check specific cop
rubocop --format html > rubocop.html   # Generate HTML report
rubocop --auto-gen-config              # Generate .rubocop_todo.yml

Performance Monitoring

# Add at the start of a block you want to measure
start_time = Time.now

# Add at the end of the block
end_time = Time.now
Rails.logger.debug "Operation took #{end_time - start_time} seconds"

RSpec

bundle exec rspec

annotate

Rails Best Practices

Comments

  • File/class-level comments

    1. Every class definition should have an accompanying comment that describes what it is for and how it should be used.
    2. A file that contains zero classes or more than one class should have a comment at the top describing its contents.
    3. All files, including data and config files, should have file-level comments.
  • Function comments

    1. Every function declaration should have comments immediately preceding it that describe what the function does and how to use it.
    2. Every function should mention what the inputs and outputs are, unless it meets all of the following criteria:
      1. not externally visible
      2. very short
      3. obvious
  • Block and inline comments

    1. Complicated operations get a few lines of comments before the operations commence. Non-obvious ones get comments at the end of the line.
    2. do not use block comments. They cannot be preceded by whitespace and are not as easy to spot as regular comments.
  • Punctuation, spelling and grammar

    1. Pay attention to punctuation, spelling, and grammar; it is easier to read well-written comments than badly written ones.
    2. Comments should be as readable as narrative text, with proper capitalization and punctuation.
    3. In many cases, complete sentences are more readable than sentence fragments.
    4. Shorter comments, such as comments at the end of a line of code, can sometimes be less formal, but you should be consistent with your style.
  • TODO comments

    1. Use TODO comments for code that is temporary, a short-term solution, or good-enough but not perfect.
    2. TODOs should include the string TODO in all caps, followed by the full name of the person who can best provide context about the problem referenced by the TODO, in parentheses.
    3. A colon is optional.
    4. A comment explaining what there is to do is required.
    5. The main purpose is to have a consistent TODO format that can be searched to find the person who can provide more details upon request.
    6. A TODO is not a commitment that the person referenced will fix the problem.
# bad
# TODO(TDO): Use proper namespacing for this constant.

# bad
# TODO(orinify122): Use proper namespacing for this constant.

# good
# TODO(Orin): Use proper namespacing for this constant.
  • Commented-out code
  1. Never leave commented-out code in the codebase.

Resources

  1. https://dev.to/ericchapman/my-beloved-ruby-on-rails-cheat-sheet-50pi
  2. https://gist.github.com/mdang/95b4f54cadf12e7e0415