| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
now we don't have to have a hard coded key
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
avoid hash lookups and remove depency on the instance
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
we don't need to repeat if statements
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
now we only have to look up @scope[:scope_level] once per call to
canonical_action? and we don't have a variable named "flag"
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
since we pass `as` down, then we won't have to do an insert / delete
dance with the options hash
|
| | | | | | | |
|
|/ / / / / / |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Pass block for logging.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This follows the good practice listed on http://guides.rubyonrails.org/debugging_rails_applications.html#impact-of-logs-on-performance.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This reverts commit 705977620539e2be6548027042f33175ebdc2505, reversing
changes made to dde91e9bf5ab246f0f684b40288b272f4ba9a699.
IT BROKE THE BUILD!!!
|
| |/ / / / /
|/| | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
You can now configure custom digest for cookies in the same way as `serializer`:
config.action_dispatch.cookies_digest = \SHA256'
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Provide the ability to extract the source code of the entire exception stack
trace, not just the frame raising the error. This improves debugging
capability of the error page, especially for framework-related errors.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The latest modification to the code was done in https://github.com/rails/rails/commit/5e3517ea. In Rails 3.2,
`ActionController#rescue_action` was deprecated and `rescue_action_without_handler` is no longer being used.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
we know that this call only wants the path returned, so lets call a
method that returns the path.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Fixed broken test.
Thanks Stephen Richards for reporting.
|
| |_|_|/
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Previously the generated parser had an intermediate local variable
`result` that really useful if you're building up a stateful object but
Journey always discards the result argument to the reduce functions.
This produces a simpler parser for anybody who actually wants to read
the thing.
Sadly, there's no real performance speedup with this change.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
Conflicts:
guides/source/testing.md
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
this allows us to avoid nil checks on the return value
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
there's no reason to to_sym the string if it doesn't match the regexp
anyway
|
| | | | |
| | | | |
| | | | |
| | | | | |
hash lookup should be faster than searching an array.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
These methods mutate the path variable/argument so there is no need
to reassign it every time.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
every call to default_resources_path_names allocates a new hash, no need
to dup
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
this makes scope rollback much easier
|
| | | | |
| | | | |
| | | | |
| | | | | |
we can `super` in to the previous implementation.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
we already know what helpers are path helpers, so just iterate through
that list and define the helpers with warnings
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
this lets us avoid hard coding a regexp for separating path and url
helpers in the clear! method.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Email does not support relative links since there is no implicit host. Therefore all links inside of emails must be fully qualified URLs. All path helpers are now deprecated. When removed, the error will give early indication to developers to use `*_url` methods instead.
Currently if a developer uses a `*_path` helper, their tests and `mail_view` will not catch the mistake. The only way to see the error is by sending emails in production. Preventing sending out emails with non-working path's is the desired end goal of this PR.
Currently path helpers are mixed-in to controllers (the ActionMailer::Base acts as a controller). All `*_url` and `*_path` helpers are made available through the same module. This PR separates this behavior into two modules so we can extend the `*_path` methods to add a Deprecation to them. Once deprecated we can use this same area to raise a NoMethodError and add an informative message directing the developer to use `*_url` instead.
The module with warnings is only mixed in when a controller returns false from the newly added `supports_relative_path?`.
Paired @sgrif & @schneems
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This reverts commit f632f79b8dcd144408c66a544984b2ba9cf52f87, reversing
changes made to 98c7fe87690ca4de6c46e8f69806e82e3f8af42d.
Closes #16343
|
| | | | |
| | | | |
| | | | |
| | | | | |
use helpers.include? so we don't get any false positives
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
we should not be accessing internals to figure out if a method is
defined.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
since helpers is a set, we can be confident about when to remove methods
from the module.
|