| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
a subdirectory, closes #19092.
|
|\
| |
| | |
Nodoc validate_index_length! method
|
| |
| |
| |
| | |
- This method is used only by adapters to validate length of new index names.
|
|\ \
| | |
| | | |
Added documentation for PostGreSQL database_statements [ci skip]
|
| |/
| |
| |
| |
| |
| | |
- Added documentation for index_name_exists? and rename_index.
- Also changed rails to \Rails in documentation of
allowed_index_name_length.
|
|\ \
| | |
| | | |
Fix style/grammar/typos in Caching guide.
|
|/ /
| |
| |
| |
| | |
* avoid using unnecessary commas
* fix some typos
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Document :tld_length option for cookies.
|
| | | |
|
|\ \ \
| | | |
| | | | |
Add missing error messages for sucker_punch, sneakers and qu
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
adapters [ci skip]
fix error message
change raise to use rails conventions
fix misspells
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
CHANGELOG punctuation fix
|
| | |/ /
| |/| |
| | | | |
Punctuation fix
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This reverts commit 00aa1afae3821dd858dec7111bcdf230b12040d7, reversing
changes made to b584cc68fc28492147ed3ed127ad8a7441ca8161.
Reason:
As far as we can tell, this should not be the case. Both localhost, 127.0.0.1
and ::1 is "supposed to work", so this is probably a bug somewhere.
Reopening #19815 instead.
|
|\ \ \
| | | |
| | | | |
[ci skip] Correct grammar, add docs to ActiveRecord migration generator
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Make ActionMailer #cache helper a no-op, not an exception
|
|/ / / / |
|
|\ \ \ \
| |_|_|/
|/| | | |
Remove use of mocha in the named base tests
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Rewording
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | | |
Rewording in accordance with the documentation guidelines (‘Prefer
wordings that avoid "you"s and "your”s.’) and to remove in particular
“if you'd call”.
|
|\ \ \ \
| | | | |
| | | | | |
Previews when `mail` wasn't called (NullMail instances).
|
| | | | | |
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | | |
While this was true before when every `dd` had a value,
this patch makes sure that everything keeps lining up even
when the `dd` node is blank.
|
|\ \ \ \
| |_|_|/
|/| | | |
Make sure you execute rake rdoc from rails root directory [ci skip]
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
1. Make clear where rake rdoc is executed
2. Make clear where the generated HTML files for the guides are stored
3. Use bundler 1.3.5 or later
|
|\ \ \ \
| | | | |
| | | | | |
Clarify test_order default configuration behaviour [ci skip]
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Explain config.active_support.test_order defaults
to :random in newly-generated applications thanks
to generated config/environments/test.rb, otherwise
default is :sorted (until Rails 5.0).
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fixed typo in documentation
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
Added note about non-GET links getting converted to GET links in mailer Added note about non-GET links getting converted to GET links in mailer templates [ci skip]
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
templates [ci skip]
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
AUTH PLAIN is Base64 encoded [ci skip]
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Contrary to what the name suggests, PLAIN SMTP authentication is not
sent in plain text but is Base64 encoded like the LOGIN method. Their
difference is described in the third link below.
* https://tools.ietf.org/html/rfc4954
* https://en.wikipedia.org/wiki/SMTP_Authentication
* http://www.samlogic.net/articles/smtp-commands-reference-auth.htm
|
| |/ / /
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Rails has different naming conventions for the inverse assertion
methods. While minitest uses `refute` we use `_not`. We should have a
table listing the common assertions that you want to use in the Rails
context.
Refs #18305.
|
|\ \ \ \
| | | | |
| | | | | |
Unlock sneakers adapter version
|
| | | | | |
|
|\ \ \ \ \
| |_|_|/ /
|/| | | |
| | | | | |
Fix unscope for less than
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Code such as the following will be corrected.
Developer.where(id: -Float::INFINITY...2).unscope(where: :id)
|
|\ \ \ \ \
| |_|_|/ /
|/| | | |
| | | | | |
Raise ArgumentError when find_by receives no arguments
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
It fixes the strange error saying undefined method `take'.
```
RelationTest#test_find_by_without_arg_behaves_same_with_find_by({}):
NoMethodError: undefined method `take' for #<ActiveRecord::QueryMethods::WhereChain:0x007f9c55db1d68>
```
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
Updated request_forgery_protection docs [ci skip]
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | | |
- Changed Javascript to JavaScript.
- Added full-stop which was missing, also wrapped the sentence to 80 chars.
- Changed proc to Proc and oauth to OAuth.
|
|\ \ \ \
| | | | |
| | | | | |
Small punctuation fixes [ci skip]
|
|/ / / / |
|