| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
[ci skip] form_with in the getting started guide.
|
| |
| |
| |
| | |
Add back a bit about a resource oriented style of routing.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Add Contributing to the Rails Code link.
* Wiki link for Spanish is redirect.
* The base branch of Polish repo is master. And Turkish is, too.
* Unified expression `rails-dev-box`
* The Clone url is wrong.
* The mailing list url is old.
|
| | |
|
|\ \
| | |
| | | |
Update generator guide [ci skip]
|
| | | |
|
|/ / |
|
| |
| |
| |
| | |
[ci skip]
|
| | |
|
|\ \
| | |
| | |
| | |
| | | |
yhirano55/update_rails_initialization_process_guide
Update The Rails Initialization Process of guide [ci skip]
|
| | | |
|
|/ / |
|
| |
| |
| |
| | |
Follow up of 2ebb284ef5bf2c36bd8ba0a4524cab83810f12ab.
|
| | |
|
| |
| |
| |
| | |
* Update url in Development Dependencies Install
|
| |
| |
| |
| |
| |
| | |
Lots of grammar cleanup, and also changing to use macOS.
[ci skip]
|
| |
| |
| |
| |
| |
| |
| |
| | |
This is a requirement when working on the JS portions of ASt. Using
npm instead of Yarn is a bad idea here since the lockfile is in Yarn's
format.
[ci skip]
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The initial commit (efaa6e4f79d457c2cdd08cbc56d63bc972a6993c) that changed this
behavior was intended to be a minor change, but ended up becoming a
large-ish breaking change within Active Record.
This is because instead of only JSON encoding `Hash`es or `Array`s in `#serialize`,
we now encode all values passed in. This is an issue if you're passing in a `String`,
that has already been transformed from a `Hash` to a `String`, since your data
is now being double encoded.
Unfortunately, the change was included in one of the v5.0.0 beta
releases, and it is too late to revert without huge ripple effects.
Thus, all we can do is update the documentation (via this commit), and
add some test coverage (coming soon in a PR) for the new behavior.
Please note that in the documentation I talk about deserialization, not
about serialization, where the actual change occurred. This is because
you won't notice any changes in serialized data until you try and
deserialize it. Also to make the change itself (confusing until you
read through everything multiple times) easier to understand.
Related #27788, #25594, #26101, #24234, #28292, #28285, #28285, and
probably others.
[ci skip]
|
|/
|
|
|
|
| |
about passing string to `:if` and `:unless`.
This is a follow up to https://github.com/rails/rails/pull/28058 [ci
skip]
|
|
|
|
|
|
| |
Changed sentence to be more clear
[ci skip]
|
|
|
|
|
|
| |
`it` and `has` are for singular, not plural
[ci skip]
|
|
|
|
|
|
| |
Periods should be outside of the <a> tags
[ci skip]
|
|\
| |
| | |
Update guides/source/plugins.md [ci skip]
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Improve callback examples in Active Job guide
|
| | |
|
| |
| |
| |
| | |
The advice for symbol/block form is taken from the Active Record guides.
|
|\ \
| | |
| | | |
Fix generator example code [ci skip]
|
| | | |
|
|/ / |
|
| | |
|
|\ \
| | |
| | | |
add reload_association to documentation
|
| | | |
|
| | | |
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
In some examples and guides we are recommending to use code like:
```ruby
verified_user = User.find_by(id: cookies.signed[:user_id])
```
My suggestion is to use instead:
```ruby
verified_user = User.find_by(id: cookies.encrypted[:user_id])
```
which invites users to prefer the "newer" encrypted cookies over the
"legacy" signed cookies.
|
| |
| |
| |
| |
| |
| |
| | |
Should _probably_ be done across the board with all of our
documentation, but going to leave that for another time :)
[ci skip]
|
| |
| |
| |
| | |
[ci skip]
|
|/
|
|
| |
work as intended. [ci skip]
|
| |
|
| |
|
|
|
|
|
| |
It seems that it accepts only HTTPS connections.
Ref: https://github.com/postgres/postgres/commit/7f77cbd996855a06fb742ea11adbe55c42b48fe2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
commit 4a3d295f3011e771cddead80de7497ca15d15c13
Author: Yauheni Dakuka <yauheni.dakuka@gmail.com>
Date: Fri Jul 28 14:31:35 2017 +0300
Update routing.md
commit 620a4ce47288e3ef6504290c78f931214968e7e3
Author: Yauheni Dakuka <yauheni.dakuka@gmail.com>
Date: Fri Jul 28 14:19:29 2017 +0300
[ci skip] update routing guide
|
| |
|
|
|
|
| |
callbacks
|
|\
| |
| | |
Updates Rails upgrade guide on `ActionView::Helpers::RecordTagHelper`
|