|
- Ruby on Rails: Compress the complexity of modern web apps
Everything you need Rails is a full-stack framework It ships with all the tools needed to build amazing web apps on both the front and back end
- Active Storage Overview - Ruby on Rails Guides
Configuration files that are environment-specific will take precedence: in production, for example, the config storage production yml file (if existent) will take precedence over the config storage yml file It is recommended to use Rails env in the bucket names to further reduce the risk of accidentally destroying production data
- Ruby on Rails Guides
This guide describes how to debug Rails applications It covers the different ways of achieving this and how to understand what is happening "behind the scenes" of your code
- Rails Routing from the Outside In - Ruby on Rails Guides
The Rails router matches incoming HTTP requests to specific controller actions in your Rails application based on the URL path (It can also forward to a Rack application )
- ActionView::Helpers::NumberHelper - Ruby on Rails
Ruby on Rails 8 0 2 Module ActionView::Helpers::NumberHelper actionview lib action_view helpers number_helper rb v8 0 2
- 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
- Testing Rails Applications - Ruby on Rails Guides
By default, every Rails application has three environments: development, test, and production Each environment's configuration can be modified similarly In this case, we can modify our test environment by changing the options found in config environments test rb Your tests are run under RAILS_ENV=test This is set by Rails automatically
- Active Record Query Interface - 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
|
|
|