| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Remove unnecessary require in associations_test.rb
|
| | |
|
|\ \
| | |
| | | |
Removed unused config from activemodel test
|
| | | |
|
|\ \ \
| |/ /
|/| | |
[ci skip] Added localhost IPv6
|
| | | |
|
|\ \ \
| |_|/
|/| | |
add a description of the return value that was missing [ci skip]
|
|/ / |
|
| | |
|
| |
| |
| |
| |
| |
| | |
Since the strings are dynamically computed from a constant, the actual
strings we're creating are a known set. We can compute them ahead of
time, and reduce the number of allocations in that method.
|
|\ \
| | |
| | | |
[ci skip] Add description about which object
|
| | |
| | |
| | |
| | | |
`ActiveSupport::Notifications.subscribe` expects as second parameter.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Commit bff61ba, while reducing allocations, caused a regression when an empty
format is passed to a route.
This can happen in cases where you're using an anchor tag, for example:
`https://example.com/parent/575256966.#child_1032289285`.
Because of this change `format` was getting sent in
`parameterized_parts` when previously it was not included. This resulted
in blank `format`'s being returned as `.` when if there was an extension
included it would be `.extension`. Since there was no extension this
caused incorrect URL's.
The test shows this would result in `/posts/show/1.` instead of
`/posts/show/1` which causes bad urls since the format is not present.
|
|\ \ \
| | | |
| | | | |
fix invalid package name for libmysqlclient-dev mentioned in development_dependencies_install guide
|
|/ / /
| | |
| | |
| | | |
tested on Ubuntu Desktop 15.04
|
|\ \ \
| | | |
| | | | |
Typo on helper description and action_controller_overview
|
|/ / /
| | |
| | |
| | | |
action_controller_overview file Rails' -> Rails" [ci skip]
|
|\ \ \
| | | |
| | | | |
Remove not used requires
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
[Rafael Mendonça França + Jean Boussier]
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Include MIT-LICENSE in railties gem
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Fix: make Travis CI happy about guides again
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Tests on Rails [are currently failing](https://travis-ci.org/rails/rails/jobs/78255666).
The reason is the dependency of Rails master from gems that are currently on
GitHub (not on RubyGems) and should be explicitly referenced in the Guides
test files.
|
|\ \ \ \
| |/ / /
|/| | | |
Require sprockets-rails >= 2
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Fixes https://github.com/rails/rails/commit/4d157ea8c15186c4903fa83f2dc51a5f78d13a37
Without any specification about the version of sprockets-rails, running a
`bundle install` on a brand new app might result in sprockets 0.0.1 being
installed.
However, the minimum requirement is sprockets-rails 2 (see https://github.com/rails/rails/pull/17752/files)
|
|\ \ \
| | | |
| | | | |
typo fix [ci skip]
|
| | | |
| | | |
| | | | |
sub-project's should be sub-projects' at all places
|
|\ \ \ \
| |/ / /
|/| | | |
Add missing test for #17351
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Fix minor typo in README file
|
| | | | | |
|
| |/ / /
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
With changes made in 8363b8 and ae29142 cookies that are mutated on the
request like `cookies.signed = x` were not retained in subsequent tests,
breaking cookie authentiation in controller tests.
The test added demonstrates the issue.
The reason we need to select from non-deleted cookies is because without
checking the `@delete_cookies` the `cookie_jar` `@cookies` will send the
wrong cookies to be updated. The code must check for `@deleted_cookies`
before sending an `#update` with the requests cookie_jar cookies.
This follows how the cookie_jar cookies from the request were updated
before these changes.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
It was not expecting the new `case_insensitive` option to be passed to
`generate_message`, instead of fixing the test we can just not pass this
option down since it is specific to the confirmation validator and not
necessary for the error message.
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Fix syntax error introduced by #17351.
|
| |/ / / |
|
|/ / / |
|
|\ \ \
| | | |
| | | |
| | | | |
Add case_sensitive option for confirmation validation
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Case :- 1. In case of email confirmation one needs case insensitive comparison
2. In case of password confirmation one needs case sensitive comparison
[ci skip] Update Guides for case_sensitive option in confirmation validation
|
|\ \ \ \
| | | | |
| | | | | |
cache helper with relation not working as expected
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix broken IPv6 addresses handling
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Remove dead code
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Support MySQL 5.7.8 which enables show_compatibility_56=off
|
| | | | | | | | |
|
| | | | | | | | |
|