| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | |
|
| | |
| | |
| | |
| | |
| | | |
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.
|
| | |
| | |
| | |
| | |
| | | |
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
|
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
| | |
| | |
| | |
| | |
| | | |
I didn't like this method because it mutates the parameters. Now that
the method is so small, just push it up to `initialize`
|
| | |
| | |
| | |
| | |
| | | |
now the `@defaults` variable doesn't need to be set before calling
`normalize_defaults`
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
These three options are stored in the `scope` chain outside of the
options hash. If they are in the options hash, then someone passed them
in to `match` and they don't really do anything. So lets remove the
code.
|
| | |
| | |
| | |
| | |
| | | |
remove `format` from the options hash in the scope chain so that we
don't need to remove it later
|
| | |
| | |
| | |
| | | |
this reduces the number of times we have to mutate the options hash.
|
| | |
| | |
| | |
| | | |
This just ensures that `format` is applied to things inside the scope
|
|\ \ \
| | | |
| | | | |
Fewer objects and refactoring
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Since we are always responding with an array and using `any?`, we don't
need to check if an array is empty
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Now we don't have to manually remove this from the options hash since
the scope stores it outside of "options"
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Remove the `options` reader from `Resource` because nobody needs to see
that hash. Also remove mutations on the options hash in
`apply_common_behavior_for` because leaving the side effects in that
method makes it difficult to understand what is going on in the caller.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
these two keys have a different merge strategy, and they also just get
removed from the options hash later in the code. If we store them in a
separate place, then we don't need to remove them later
|
|/ / / |
|
| | |
| | |
| | |
| | |
| | | |
Eventually we don't want to expose the "options" hash from scope, only
read values from it. Lets start by adding a reader method.
|
| | |
| | |
| | |
| | |
| | | |
now we don't need to construct a Mapping object just to get an
ArgumentError if there is no `via` parameter provided.
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
We're going to try pulling this up further, and check `via` validity
sooner. This way we don't have to do a bunch of processing on `options`
hashes only to find out that the route is incorrect
|
| | |
| | |
| | |
| | |
| | | |
If we do the Regexp verification in a second method, then the
`split_constraints` method gets much easier.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
I don't want `split_constraints` to mutate any instance variables. That
way it's easier to move the method around and understand what it does
(it has no side effects)
|
| | |
| | |
| | |
| | |
| | | |
I don't want to rely on mutating ivars. This gives me more freedom when
refactoring
|
| | | |
|
| | |
| | |
| | |
| | | |
we don't need to do it so many times.
|
| | | |
|
| | |
| | |
| | |
| | | |
Now we only need to call `split_constraints` possibly twice!
|
| | |
| | |
| | |
| | |
| | | |
apparently `format` can also come from the scope options, so we need to
extract it there too.
|
|\ \ \
| | | |
| | | | |
Authorization scheme should be case insensitive. Fixes #21199
|