| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Fix grammar. [ci skip]
|
| | |
|
|\ \
| | |
| | | |
Replace `Rails.version.to_f` with Active Record
|
| | |
| | |
| | |
| | |
| | | |
Rails should not be explicity mentioned within Active Record, since
railties and the Rails ecosystem is not required for use.
|
|\ \ \
| | | |
| | | | |
Fix actionpack typos [ci skip]
|
| | | | |
|
| |/ /
|/| | |
|
| | |
| | |
| | |
| | | |
Signed-off-by: Jeremy Daer <jeremydaer@gmail.com>
|
| | |
| | |
| | |
| | |
| | |
| | | |
Refactor of #22911.
Signed-off-by: Jeremy Daer <jeremydaer@gmail.com>
|
| | |
| | |
| | |
| | |
| | |
| | | |
Follow up of 1683410.
Signed-off-by: Jeremy Daer <jeremydaer@gmail.com>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
`ActiveRecord::Migration` needn't know about migration version
compatibility lookup. Delegate it to the Compatibility module.
Signed-off-by: Jeremy Daer <jeremydaer@gmail.com>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This commit undoes 54243fe.
Reason: Further investigation has shown the benefit is not so clear
generally speaking.
There is a long discussion and several benchmarks in the PR #24658
if you are interested in the details.
|
| | |
| | |
| | |
| | |
| | |
| | | |
Closes #24766, #24767
Signed-off-by: Jeremy Daer <jeremydaer@gmail.com>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Use the updated changelog from the first merge: 7254517
References #22806, #24762.
[ci skip]
|
|\ \ \
| | | |
| | | | |
Update configuring.md with colons and periods
|
|/ / /
| | |
| | | |
Some configuration options started with a capital letter indicating the beginning of a sentence, which didn't makes sense without the colons. Similarly, some were missing periods at the end of their descriptions. [ci skip]
|
|\ \ \
| | | |
| | | | |
Patch 1
|
| | | | |
|
|/ / /
| | |
| | | |
Per discussion in #24786.
|
|\ \ \
| | | |
| | | | |
Document config.assets.gzip flag.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
https://github.com/rails/sprockets-rails/pull/342.
[ci skip]
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
Conflicts:
guides/source/configuring.md
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
[ci skip]
|
| | | | |
| | | | |
| | | | |
| | | | | |
guide [ci skip]
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
for normal apps.
[ci skip]
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
[ci skip]
|
| | | | |
| | | | |
| | | | |
| | | | | |
[ci skip]
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- Change from "The Task" to "The Update Task" as referred elsewhere
[ci skip]
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- Make bulleted lists, end properly
[ci skip]
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
See https://github.com/thoughtbot/presskit/blob/master/README.md#name for name capitalization.
[ci skip]
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Active Job: Add note about ability to configure adapters on per job basis in CHANGELOG and release notes
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
CHANGELOG and release notes.
[ci skip]
|
|\ \ \ \ \
| | | | | |
| | | | | | |
[FIX] Change 1.week to create 1 week durations instead of 7 days durations.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is just to remove astonishment from getting `3600 seconds` from typing `1.hour`.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Remove last uses of `@env[]` and `@env[]=`
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Last August (2015), @tenderlove worked to remove all `@env[]` and `@env[]=`, in
favor of using `set_header`, `get_header`, etc. (Here's an [example
commit](https://github.com/rails/rails/commit/f16a33b68efc3dc57cfafa27651b9a765e363fbf)).
This PR should remove the last uses of these methods, and fully convert
them to the newly standardized API.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
schema_load triggers 2nd schema_load (via locking)
|
| | | | | | | |
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Currently, loading the schema (schema_load)
accesses the locking column (locking_column)
which defaults the value (reset_locking_column)
which invalidates the schema (reload_schema_from_cache)
which forces another schema load.
Good news:
The second schema_load does accesses locking_column,
but locking_column is set, so it does not reset_locking_column
and it does not trigger an infinite loop.
The solution is not invalidate the cache while default locking_column
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Pass over debugging guide
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
[ci skip]
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Fix broken links to ryandaigle.com [ci skip]
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Review the `byebug` debugging guide [ci skip]
|