2020-12-04 07:52:10 -05:00
|
|
|
* Add benchmark method that can be called from anywhere.
|
|
|
|
|
|
|
|
This method is used as a quick way to measure & log the speed of some code.
|
|
|
|
However, it was previously available only in specific contexts, mainly views and controllers.
|
|
|
|
The new Rails.benchmark can be used in the rest of your app: services, API wrappers, models, etc.
|
|
|
|
|
|
|
|
def test
|
|
|
|
Rails.benchmark("test") { ... }
|
|
|
|
end
|
|
|
|
|
|
|
|
*Simon Perepelitsa*
|
|
|
|
|
2020-11-30 19:28:15 -05:00
|
|
|
* Removed manifest.js and application.css in app/assets
|
|
|
|
folder when --skip-sprockets option passed as flag to rails.
|
|
|
|
|
|
|
|
*Cindy Gao*
|
|
|
|
|
2020-11-10 11:02:48 -05:00
|
|
|
* Add support for stylesheets and ERB views to `rails stats`.
|
|
|
|
|
|
|
|
*Joel Hawksley*
|
|
|
|
|
2020-08-04 12:32:37 -04:00
|
|
|
* Allow appended root routes to take precedence over internal welcome controller.
|
|
|
|
|
|
|
|
*Gannon McGibbon*
|
|
|
|
|
|
|
|
|
2020-12-02 18:37:26 -05:00
|
|
|
Please check [6-1-stable](https://github.com/rails/rails/blob/6-1-stable/railties/CHANGELOG.md) for previous changes.
|