| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Added an `enforce_utf8` hash option for `form_tag` method
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Control to output a hidden input tag with name `utf8` without monkey
patching
Before:
form_tag
# => '<form>..<input name="utf8" type="hidden" value="✓" />..</form>'
After:
form_tag
# => '<form>..<input name="utf8" type="hidden" value="✓" />..</form>'
form_tag({}, { :enforce_utf8 => false })
# => '<form>....</form>'
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Deprecation removed build fixed
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
see discussion here #11274
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Cleanup ul_encoded_params_parsing_test
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Cleanup on getting_started tutorial
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Replaced <br /> with <br> for consistency; Added note about
singular/plural distinction (which was previously confusing to a Rails
noob); Rephrased explanation of how form is routed to controller, again
to reduce confusion; and added explanation to replace incorrect link.
[ci skip]
|
|\ \ \ \ \ \ \ \
| | |_|_|/ / / /
| |/| | | | | | |
Some performance benchmarking for take vs limit
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Also added a dummy progress bar during insert of records so it shows something is happening.
Performance report
Model.take 6198.9 (±13.4%) i/s - 121743 in 20.042671s
Model.take! 6173.6 (±13.6%) i/s - 121242 in 20.057006s
Model.all limit(100) 107.8 (±15.8%) i/s - 2106 in 20.022316s
Model.all take(100) 105.2 (±15.2%) i/s - 2061 in 20.062509s
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Running isolated test for assertions and journey
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | | |
in actionpack
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
RUNNING_UNIT_TESTS tweaks.
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
jetthoughts/11288_remove_extra_queries_for_belongs_to_with_touch
#11288: Removed duplicated touching
Conflicts:
activerecord/CHANGELOG.md
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
if belongs to model with touch option on touch
Closes #11288
|
| |/ / / / / / / /
|/| | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | |/ / / / / / /
| |/| | | | | | | |
Remove actionview test duplication
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Same test exists above 2 or 3 lines.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Extract common query to a constant.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Perf ref: https://gist.github.com/vipulnsward/8209749201dfdd678c97
|
|\ \ \ \ \ \ \ \ \
| |/ / / / / / / /
|/| | | | | | | | |
Make HashWithIndifferentAccess#select always return the hash.
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Hash#select! returns nil if the hash didn't change and thus behaves differently
from select, so it's return value can't be used as result for the latter.
|
|\ \ \ \ \ \ \ \
| | |/ / / / / /
| |/| | | | | | |
Tidying "getting started" guide
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Section "allowing the update of fields" was now just a general
introduction to the idea of the model (actual updating was two sections
later). So, merged into the section about validation.
|
|\ \ \ \ \ \ \ |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Add a list of what will be covered into this guide
|
| | | | | | | | |
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Adding back deprecation require in all.rb
|
|/ / / / / / / / |
|
| |/ / / / / /
|/| | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
arunagw/disable_implicit_join_references_removed"
`disable_implicit_join_references=` was only deprecated on `master`,
not with rails 4.0. We can remove it after 4.1
This reverts commit 3c719ead414ffd29e71efce185698af979052abb, reversing
changes made to d5c3bf9722abd5733a769c8d789de3f74dbfb92d.
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
Space is not required for Set-Cookie header
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This reverts commit d108672dada7ba97d3b3b56f0c6001cea621061e.
Conflicts:
activesupport/CHANGELOG.md
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | |
| | | | | | |
| | | | | | | |
jetthoughts/fix_create_post_example_in_getting_started
Improve Getting Started Guide
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Cleanup belongs to tests
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
simplified logic to calculate number of queries by using assert_queries
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
removes markdown code markers from displaying in the active record querying guide [ci skip]
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
querying guide
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Specify request method in guides [ci skip]
|
| | | | | | | | |
|