| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \
| | |
| | | |
Small fixes [ci skip]
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
refactor the tests with a backwards compatible method call so we can rm
add_route2 from the journey router
|
| | |
| | |
| | |
| | |
| | | |
then we can let the mapping object derive stuff that the Route object
needs.
|
| | |
| | |
| | |
| | |
| | | |
now that we aren't doing options manipulations, we can just pass the
mapping object down and read values from it.
|
|/ /
| |
| |
| |
| | |
since we've extracted the `to` initialization, there's no need for
`process_path`
|
| |
| |
| |
| |
| |
| | |
if `to` was initialized, this method would return, so we can eliminate
the to ||= in the conditional. Finally, let's return a nil in the else
block so that it's explicit that this method can return nil
|
| |
| |
| |
| | |
Eventually we'll pull this up and delete `process_path`.
|
| | |
|
| |
| |
| |
| |
| |
| | |
We don't need a method for something like this. I want to pull this up
the stack as well and move the module + :controller ArgumentError up the
stack as well
|
| | |
|
| |
| |
| |
| |
| | |
now we don't need to add it to a hash and delete it from the hash later
just to pass it around
|
| |
| |
| |
| |
| | |
`add_route` needs the AST, so rather than shove it in a hash and delete
later, lets move parsing up the stack so we can pass down later
|
| |
| |
| |
| |
| | |
also change the feeler to subclass AD::Request so that it has all the
methods that Request has
|
| | |
|
| | |
|
| |
| |
| |
| | |
Eventually I want to eliminate the FakeSet test class
|
| |
| |
| |
| |
| | |
I'm going to reimplement this using route objects, so it will be easier
if we just change ast access to go through a method rather than hashes
|
| |
| |
| |
| | |
we don't need to keep adding it and deleting if from hashes.
|
| |
| |
| |
| |
| | |
Eventually I want to pull up AST generation so that we don't have to add
it to the `conditions` hash.
|
|\ \
| | |
| | | |
Add method_source dependency to activesupport
|
| | | |
|
| | |
| | |
| | |
| | | |
We already have rake install command that does the same thing.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
ixkaito/version_is_needless_when_running_installrb
Remove `version` argument in install.rb
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Fix middleware deprecation message. Related to #21172.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
[ci skip] SQL is written using statements, not sentences
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
It just constructs a Path::Pattern object with the AST that it already
has
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This was a useless object. We can just directly construct a
Path::Pattern object without a Strexp object.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
the caller already has it, there is no reason to pack it in to an object
and just throw that object away.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
we always pass all parameters, so there is no reason to provide default
arguments.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
the caller already has access to `as`, so we can stop passing it around.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
the same value that is extracted from the options hash earlier is
returned, so we don't need to pass it in in the first place. The caller
already has the data, so stop passing it around.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
this way we don't have to mutate the options hash so far away from where
the user passed it in
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Require explicit counter_cache option for has_many
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Assert that counter_cache behaviour is not used on belongs_to or
has_many associations if the option is not given explicitly.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Previously has_many associations assumed a counter_cache was to be used
based on the presence of an appropriately named column. This is
inconsistent, since the inverse belongs_to association will not make
this assumption. See issues #19042 #8446.
This commit checks for the presence of the counter_cache key in the
options of either the has_many or belongs_to association as well as
ensuring that the *_count column is present.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The `anchor` parameter [is overridden](https://github.com/rails/rails/blob/b4b4a611d0eb9aa1c640c5f521c6a43bf2a65bab/actionpack/lib/action_dispatch/routing/mapper.rb#L1528) unless it
is directly passed to `match`, so setting it in a scope must be a
mistake.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Prevent duplicating `where` clauses
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
class
Fixes #19528
fix for mysql2 test
better test
|
| | | | |
| | | | |
| | | | |
| | | | | |
Closes #21201.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
How to pass arguments to ActiveJob Jobs [ci skip]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
A section explaining how to pass arguments to Jobs has been added.
[ci skip] How to pass arguments to ActiveJob Jobs
Removed the "how to pass arguments" from what you will know section
[ci skip] improving Enqueue Job section
Using GuestsCleanupJob rather than MyJob for coherence.
[ci skip] Passing args section merged with enqueuing jobs
Passing args is now explained through examples withing Enqueuing the Jobs section
[ci skip] Unnecessary example removed
[ci skip] Typo fixed (missing as)
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
[ci skip] Clarified asset pipeline guide
|
|/ / / / / / |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The latest, currently unreleased, version of queue_classic is required
for this to work. See
https://github.com/QueueClassic/queue_classic/pull/262 for more details.
|