About 159,000 results
Open links in new tab
  1. Getting Started with Rails - Ruby on Rails Guides

    1. Introduction Welcome to Ruby on Rails! In this guide, we'll walk through the core concepts of building web applications with Rails. You don't need any experience with Rails to follow along …

  2. Ruby on Rails 8.0 Release Notes

    Check the Ruby on Rails Guides Guidelines for style and conventions. If for whatever reason you spot something to fix but cannot patch it yourself, please open an issue.

  3. Configuring Rails Applications - Ruby on Rails Guides

    This guide covers the configuration and initialization features available to Rails applications.After reading this guide, you will know: How to adjust the behavior of your Rails applications.

  4. Action View Form Helpers - Ruby on Rails Guides

    Rails simplifies this by providing view helpers, which are methods that output HTML form markup. This guide will help you understand the different helper methods and when to use each.

  5. Caching with Rails: An Overview - Ruby on Rails Guides

    Jul 28, 2015 · Rails provides a set of caching features out of the box which allows you to not only cache data, but also to tackle challenges like cache expiration, cache dependencies, and …

  6. Getting Started with Dev Containers — Ruby on Rails Guides

    After reading this guide, you will know: How to create a new Rails application with the rails-new tool. How to begin working with your application in a development container.

  7. Action Controller Overview - Ruby on Rails Guides

    Once an incoming request is matched to a controller by the router, Rails creates an instance of that controller class and calls the method with the same name as the action.

  8. Active Record Callbacks - Ruby on Rails Guides

    Nov 25, 2013 · Rails provides a mechanism to prevent saving records using the ActiveRecord::Suppressor module. By using this module, you can wrap a block of code where …

  9. Action Mailer Basics - Ruby on Rails Guides

    Check the Ruby on Rails Guides Guidelines for style and conventions. If for whatever reason you spot something to fix but cannot patch it yourself, please open an issue.

  10. Active Record Associations - Ruby on Rails Guides

    Rails supports six types of associations, each with a particular use-case in mind. Here is a list of all of the supported types with a link to their API docs for more detailed information on how to …