Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use frozen string literal in actionpack/ | Kir Shatrov | 2017-07-29 | 1 | -0/+2 |
| | |||||
* | Fix regression from multiple mountpoint support | David Rodríguez | 2017-07-24 | 1 | -1/+22 |
| | |||||
* | Allow mounting same engine under several locations | David Rodríguez | 2017-07-05 | 1 | -2/+5 |
| | |||||
* | Revert "Merge pull request #29540 from kirs/rubocop-frozen-string" | Matthew Draper | 2017-07-02 | 1 | -1/+0 |
| | | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa. | ||||
* | Enforce frozen string in Rubocop | Kir Shatrov | 2017-07-01 | 1 | -0/+1 |
| | |||||
* | `respond_to_missing?` should be private | Ryuta Kamizono | 2017-04-22 | 1 | -2/+3 |
| | | | | | | | Follow up of 03d3f036. Some of `respond_to?` were replaced to `respond_to_missing?` in 03d3f036. But the visibility is still public. It should be private. | ||||
* | Override `respond_to_missing?` instead of `respond_to?` when possible | Sean Griffin | 2016-08-31 | 1 | -1/+1 |
| | | | | | | | | | | This was almost every case where we are overriding `respond_to?` in a way that mirrors a parallel implementation of `method_missing`. There is one remaining case in Active Model that should probably do the same thing, but had a sufficiently strange implementation that I want to investigate it separately. Fixes #26333. | ||||
* | applies new string literal convention in actionpack/lib | Xavier Noria | 2016-08-06 | 1 | -1/+1 |
| | | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default. | ||||
* | Make the helpers a required argument | Evan Phoenix | 2015-02-19 | 1 | -2/+2 |
| | |||||
* | Cache url_helpers instead of creating each time | Evan Phoenix | 2015-02-19 | 1 | -4/+5 |
| | | | | | | | | | This has 2 effects: 1. RoutesProxy is CRAZY faster because it's no longer creating a new Module each time method_missing is hit. 2. It bypasses an existing bug in ruby that makes `class << obj` unsafe to be used in threading contexts. | ||||
* | Missing or unneeded require extract_options | Akira Matsuda | 2013-02-01 | 1 | -0/+2 |
| | |||||
* | Override respond_to? since we are also overriding method_missing. | José Valim | 2012-01-03 | 1 | -0/+4 |
| | |||||
* | Move RoutesProxy to separate file | Piotr Sarnacki | 2010-09-03 | 1 | -0/+35 |