| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Various grammar corrections and wrap to 80 characters.
|
|
|
|
| |
LookupContext is class name
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch uniformizes warning messages. I used the most common style
already present in the code base:
* Capitalize the first word.
* End the message with a full stop.
* "Rails 5" instead of "Rails 5.0".
* Backticks for method names and inline code.
Also, converted a few long strings into the new heredoc convention.
|
|
|
|
|
|
|
|
|
|
|
| |
If we don't return early Ruby will memoize the value of the prefix of
the parent class what will make the subsequent searchs to not work as
expected.
If the early return we are avoiding the memoization.
But when using the deprecated path we need to memoize the value, so we
are not using early return for the deprecated path.
|
| |
|
| |
|
|
|
|
| |
These methods are private API.
|
| |
|
|
|
|
|
|
| |
rename ::_local_prefixes to ::local_prefixes to state the public attribute.
document the latter.
make ::local_prefixes private, test overriding it and remove documentation for overriding ::_parent_prefixes.
|
|
|
|
| |
inheritance chain, classes can override local prefixes.
|
|
|
|
| |
This reverts commit 77bb03df2ca3687b290e9fe77d21007642f0329c.
|
| |
|
|
|