| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| | |
Dont try to call method missing in routes if thats not what we want
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
If, doing a test like this:
```
class BugTest < ActionView::TestCase
def test_foo
omg
end
```
Will raise with:
```
RuntimeError: In order to use #url_for, you must include routing helpers
explicitly. For instance, `include
Rails.application.routes.url_helpers`.
```
Thats a bit confusing, as we are not calling url_for at all.
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Add method to run command-line db apps
Conflicts:
activerecord/CHANGELOG.md
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- Added run_cmd() class method to dry up Kernel.system() messages within
this namespace and avoid shell expansion by passing a list of
arguments instead of a string
- Update structure_dump, structure_load, and related tests units to
pass a list of params instead of using a string to
avoid shell expansion
|
| | | |
|
|\ \ \
| | | |
| | | | |
use correct DB connection for generated HABTM table
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Outdated information about session storage updated [ci skip]
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
The guide contains information about Rails 2 storing mechanism, but not Rails 4.
Enhanced the accuracy and coherence of information (There was a part saying "Older versions of Rails use CookieStore, which uses `secret_token` instead of `secret_key_base` that is used by EncryptedCookieStore." while there was no mention of EncryptedCookieStore before)
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Deprecate si prefix
|
| | | | | | |
|
| | | | | | |
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | | |
There are some cases where :path is nil on option and we should respect
that.
|
| | | | |
| | | | |
| | | | |
| | | | | |
We already know how to handle `path`, so lets just handle it on our own.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
All callers of `action_path` interpolate the return value in to a
string, so there is no need for the method to to_s it. to_sym on a
symbol will return the same symbol, though I think `action_path` may
always be called with a symbol so this might not be necessary.
|
| | | | |
| | | | |
| | | | |
| | | | | |
we only need to check for `path` once.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
[ci skip] Add link to testing guide
|
| | |_|_|/
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Make assert_enqueued_with and assert_performed_with returns the matched job
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Now we can see where `defaults` options originate
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
since `controller` and `controller_scope` were the same, just combine
them
|
|/ / / / / |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This method isn't used internally, isn't tested, isn't documented. We
should delete it.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
add a predicate method so that we can avoid is_a? calls on the resource
object.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
calling `scope` isn't cheap, so try to call cheaper methods that do the
same thing for those particular parameters (in this case `path_scope`)
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
`resource_scope` should just put resource scopes on the stack, and
doesn't need to know what a `scope_level` is.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
We just want to augment the scope level, not the frame itself, so just
copy the frame to the new scope object.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Update info on browser connection limits [ci skip]
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Browsers have not been limited to two connections per host for quite
some time now. With more connections allowed, the trade-off involved in
asset host distribution isn't so clear and it becomes more important
that developers measure actual performance before and after.
|
| | | | |
| | | | |
| | | | |
| | | | | |
this gives us an easier way to iterate the stack
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The same information is stored in the `@scope` linked list, so just get
it from there.
|
| | | | |
| | | | |
| | | | |
| | | | | |
this lets us remove the setter and make the Resource object Read-Only
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
We don't need to ask `scope` for the resource because we already have it
right here.
|
|\ \ \ \
| | | | |
| | | | | |
[ci skip] Modify introduction to be consistent with other guides
|
|/ / / /
| | | |
| | | |
| | | | |
guides
|
| | | |
| | | |
| | | |
| | | | |
Closes #21121
|
|\ \ \ \
| | | | |
| | | | | |
Reload I18n.load_path in development
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
make generated scaffold functional tests work inside API engines
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* set engine's route in setup
* use fixture with engine namespace
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This method raises conditionally not always so we should not documment
as it always raise.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We should return when the contoller key is not present or if the
controller doesn't exist and we didn't raised an error.
|