| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| |
| |
| |
| |
| |
| | |
Fixes https://github.com/rails/rails/issues/16958
[Byron Bischoff & Melanie Gilman]
|
|\ \
| | |
| | | |
Follow up to #17646.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Creating mailer layouts by default, including html and body tags
|
| | | |
|
| | |
| | |
| | |
| | | |
tags to reduce spam score
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This allows us so abstract the migration from the type that is actually
used by Rails. For example, ":string" may be a varchar or something,
but the framework does that translation, and the app shouldn't need to
know.
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Explain that default_scope also influences update_all
|
| | | |
| | | |
| | | | |
It now contains a carefully formulated reference to the "current relation" which might help clarify that the receiving will generate its own scope, escaping the need for explicitly referencing `default_scope` which is, after all, just another way of specifying a scope and nothing special.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This was not explicitly stated before and I needed to try it out to be
certain. A little explicit statement in the API docs might help here.
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Use sprockets-rails 2.2.x on base app and allow greater version
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- Remove sprockets-rails from generated Gemfile as rails has a hard-dependency on it
- Also allow sprockets-rails >= 2.0.0
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
It should be part of the documented public API, since we have an entire
section of the guides dedicated to it. Documented in a way that
addresses the concerns which kept it undocumented in the past.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Show source view and backtrace on missing template errors
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This will help you debug missing template errors, especially if they
come from a programmatic template selection. Thanks to @dhh for
suggesting that.
As a bonus, also show request and response info on the routing error
page for consistency.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
claudiob/remove-unwanted-comments-from-documentation
Mark comments that should not be in the docs [ci skip]
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Some comments that are meant to separate blocks of code in a file show up
on http://api.rubyonrails.org as though they were part of the documentation.
This commit hides those comments from the documentation.
Stems from the discussion with @zzak at https://github.com/voloko/sdoc/issues/79#issuecomment-64158738
[ci skip]
|
| | | |
| | | |
| | | |
| | | | |
[related #17718]
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Thanks to @thedarkone for pointing out that an instance of this object
is used in a shared context.
|
|\ \ \ \
| | | | |
| | | | | |
Deprecate use route
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
If the route set is empty, or if none of the routes matches with a score > 0,
there is no point showing the deprecation message because we are already be
raising the `ActionController::UrlGenerationError` mentioned in the warning.
In this case it is the expected behavior and the user wouldn't have to take any
actions.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Reference #17453
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The internal tests that (incorrectly) relied on this were already fixed in
938d130. However, we cannot simply fix this bug because the guides prior to
b7b9e92 recommended a workaround that relies on this buggy behavior.
Reference #17453
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
These are currently working "by accident" because `match_route` does not check
that the name is valid.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Replace ActionDispatch::Head with Rack::Head.
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fix includes on association with a scope
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
on the joined assoiciation
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Move test that depends on ActiveRecord
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This commit moves a test from `test/template` to `test/activerecord` since the
test depends on ActiveRecord.
This matches the documentation from [RUNNING_UNIT_TESTS](https://github.com/rails/rails/blob/f28d1ddd507174ac233b773cc4f35c3c05ad32e7/actionview/RUNNING_UNIT_TESTS.rdoc):
> Test cases in the test/activerecord/ directory depend on having activerecord and sqlite3 installed.
> If Active Record is not in actionview/../activerecord directory, or the sqlite3 rubygem is not installed, these tests are skipped.
> Other tests are runnable from a fresh copy of actionview without any configuration.
---
More details about this commit.
All the tests starting with `require 'active_record_unit'` are already
inside `test/activerecord`, except for the one test this commit moves.
If you don't have `active_record` on your machine, the following command
currently fails on master:
```bash
```
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fix wrong path in comments about stylesheets
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
I put the wrong path in my last PR by accident. Fixed here. Related to #17742
|
|\| | | | | | |
| |_|_|_|/ / /
|/| | | | | | |
Change 'of plugins' syntax
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Currently, the docs uses a syntax that is unclear and not general
American English. I've switched it to be clearer wording. Not a big
fix, but may be helpful.
|
| |/ / / /
|/| | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
[ci skip]
|
|\ \ \ \ \
| | | | | |
| | | | | | |
[ci skip] Fix class name of middleware.
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Add a test for reflection keys as Strings, fixes #16928
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
See also PR: #17610
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
Specified beta branch for web-console gem
|