Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed deprecated string to specify the middleware [ci skip] | amitkumarsuroliya | 2015-10-03 | 1 | -1/+1 |
| | |||||
* | Merge pull request #21851 from y-yagi/use_class_to_specify_middleware | Kasper Timm Hansen | 2015-10-03 | 1 | -5/+5 |
|\ | | | | | use class to specify the middleware [ci skip] | ||||
| * | use class to specify the middleware [ci skip] | yuuji.yaginuma | 2015-10-03 | 1 | -5/+5 |
| | | | | | | | | using string for middleware class names is deprecated in 83b767cef90abfc4c2ee9f4b451b0215501fae9a | ||||
* | | removing Rack::Runtime from the default stack. | Aaron Patterson | 2015-10-02 | 3 | -3/+1 |
|/ | | | | | | | | | | | | The runtime header is a potential target for timing attacks since it returns the amount of time spent on the server (eliminating network speed). Total time is also not accurate for streaming responses. The middleware can be added back via: ```ruby config.middleware.ues ::Rack::Runtime ``` | ||||
* | Refactor AS::Callbacks halt config and fix the documentation | Roque Pinel | 2015-10-01 | 2 | -12/+15 |
| | | | | | | | | | Move from `AS::Callbacks::CallbackChain.halt_and_display_warning_on_return_false` to `AS::Callbacks.halt_and_display_warning_on_return_false` base on [this discussion](https://github.com/rails/rails/pull/21218#discussion_r39354580) Fix the documentation broken by 0a120a818d413c64ff9867125f0b03788fc306f8 | ||||
* | Fix documentation for has_many dependant options. | Niall Burkley | 2015-09-29 | 1 | -1/+4 |
| | | | | | | | * A `has_many` dependant association accepts `[:destroy, :delete_all, :nullify, :restrict_with_error, :restrict_with_exception]` as options. Currently the documentation references `delete` instead of `delete_all` * Adds documentation for other options | ||||
* | Make fuzzy sentence more clear | David Verhasselt | 2015-09-28 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | Merge pull request #21738 from cllns/remove-to_s-from-example | Eileen M. Uchitelle | 2015-09-25 | 1 | -19/+1 |
|\ | | | | | [Engines Guide] Remove to_s example, since it's outside the scope | ||||
| * | Remove to_s example | Sean Collins | 2015-09-24 | 1 | -19/+1 |
| | | | | | | | | | | | | It's outside the scope of the Engines guide [skip ci] | ||||
* | | Merge pull request #21740 from cllns/add-jbuilder-notes | Yves Senn | 2015-09-24 | 1 | -0/+33 |
|\ \ | | | | | | | | | | | | | | | | [ci skip] [Action View Overview Guide] Add note about Jbuilder | ||||
| * | | Add note about Jbuilder | Sean Collins | 2015-09-23 | 1 | -0/+33 |
| |/ | | | | | | | [skip ci] | ||||
* / | Change the paths for both Gemfile lines to be 'engines/blorgh' | Sean Collins | 2015-09-23 | 1 | -2/+2 |
|/ | | | | | | | | They're now consistent. Also changes the quotes to be single, so we only have one type of quote per line [skip ci] | ||||
* | Remove leading slash from path | Sean Collins | 2015-09-22 | 1 | -1/+1 |
| | | | | | | | The leading slash denotes an absolute path, rather than a relative one (which is more popular) [ci skip] | ||||
* | Update i18n.md [ci skip] | Thiago Augusto | 2015-09-22 | 1 | -2/+2 |
| | |||||
* | Update routing.md | Thiago Augusto | 2015-09-22 | 1 | -2/+2 |
| | |||||
* | fix `to_time` output in ActiveSupport guide. Since ↵ | amitkumarsuroliya | 2015-09-20 | 1 | -3/+3 |
| | | | | | https://github.com/rails/rails/commit/48583f8bf74d1cefefea3cd6591bd546a9eaff6c , to_time returns times formatted as YYYY-MM-DD HH:MM:SS UTC [ci skip] `to_time` method returns in `YYYY-MM-DD HH:MM:SS UTC` format after this commit https://github.com/rails/rails/commit/48583f8bf74d1cefefea3cd6591bd546a9eaff6c . | ||||
* | correcting word smpt -> smtp in ActionMailer guide [ci skip] | amitkumarsuroliya | 2015-09-20 | 1 | -2/+2 |
| | | | `smpt.gmail.com` should be `smtp.gmail.com` | ||||
* | remove association reload option from guide [ci skip] | yuuji.yaginuma | 2015-09-20 | 1 | -12/+20 |
| | | | | The option was deprecated in 6eae366d0d2e5d5211eeaf955f56bd1dc6836758 | ||||
* | Replace `#=>` with `# =>` [ci skip] | amitkumarsuroliya | 2015-09-19 | 2 | -2/+2 |
| | | | | @rafaelfranca suggested in https://github.com/rails/rails/commit/f7c7bcd9c2a8b0e8c2840295d001d2d4dfd4cfae that code examples should display the result after `# =>` and not after `#=>`. | ||||
* | Fixed unclosed tags in kindle guide source [ci skip] | Ronak Jangir | 2015-09-19 | 2 | -6/+6 |
| | |||||
* | mostly remove the ParamsParser middleware | Aaron Patterson | 2015-09-18 | 4 | -11/+4 |
| | | | | | This can still be added to the middleware stack, but is really not necessary. I'll follow up with a commit that deprecates the constant | ||||
* | let the guides home point to the new release series endpoints [ci skip] | Xavier Noria | 2015-09-18 | 1 | -5/+5 |
| | |||||
* | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2015-09-18 | 1 | -5/+5 |
|\ | |||||
| * | Add missing and remove unnecessary periods in testing.md [ci skip] | Juanito Fatas | 2015-09-05 | 1 | -5/+5 |
| | | |||||
* | | Change AbstractRequest to ActionDispatch::Request | Bradley D | 2015-09-17 | 1 | -1/+1 |
| | | | | | | | | | | | | AbstractRequest has been deprecated, updating to refer to ActionDispatch::Request instead. [ci skip] | ||||
* | | Clarify CSRF <script> purpose and protection. Note how to deal with your own ↵ | Jeremy Daer | 2015-09-16 | 2 | -6/+11 |
| | | | | | | | | | | | | | | | | <script> tags. Ref #21618 [ci skip] | ||||
* | | Merge pull request #21644 from AvnerCohen/i18n_backend | Claudio B. | 2015-09-16 | 1 | -1/+1 |
|\ \ | | | | | | | Update documentation to remove 'desirable' suggestion for what is not a clear cut approach | ||||
| * | | Update documentation to remove 'desirable' suggestion for what is not a ↵ | Avner Cohen | 2015-09-16 | 1 | -1/+1 |
| | | | | | | | | | | | | clear cut approach | ||||
* | | | Merge pull request #21618 from designgrill/master | Eileen M. Uchitelle | 2015-09-16 | 2 | -5/+3 |
|\ \ \ | |/ / |/| | | Improved explanation of the <script> tag CSRF behavior | ||||
| * | | Improved explanation of the <script> tag CSRF behavior | Anshul Agrawal | 2015-09-14 | 2 | -5/+3 |
| | | | |||||
* | | | Merge pull request #20897 from lukechesser/guide-fix-for-acceptance-validation | Arthur Nogueira Neves | 2015-09-14 | 1 | -3/+7 |
|\ \ \ | |/ / |/| | | Update Validation guide for acceptance method | ||||
| * | | Update validation guide for acceptance method | Luke Chesser | 2015-07-16 | 1 | -3/+7 |
| | | | |||||
* | | | Merge pull request #21568 from amitsuroliya/mysql_version_update | Rafael Mendonça França | 2015-09-13 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | Updated MySQL documentation link to MySQL latest version 5.7 everywhe… | ||||
| * | | | Updated MySQL documentation link to MySQL latest version 5.7 everywhere [ci ↵ | amitkumarsuroliya | 2015-09-10 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | skip] Bumps from `5.6` to `5.7` | ||||
* | | | | Remove RHTML reference in Action Controller docs [ci skip] | Lachlan Campbell | 2015-09-10 | 1 | -1/+1 |
| | | | | |||||
* | | | | add description of passing a block to `add_source` [ci skip] | yuuji.yaginuma | 2015-09-10 | 1 | -1/+9 |
|/ / / | | | | | | | | | | block support added in 8cc01e0b2bfa75a613720c535d34e451f5de769c | ||||
* | | | Merge pull request #21333 from imtayadeway/ar-querying-docs | Eileen M. Uchitelle | 2015-09-09 | 1 | -17/+16 |
|\ \ \ | | | | | | | | | Improve the AR querying docs | ||||
| * | | | [ci skip] Update MySQL docs reference to latest | Tim Wade | 2015-09-09 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Bumps to 5.7 | ||||
| * | | | [ci skip] Improve readability in AR querying guide | Tim Wade | 2015-09-09 | 1 | -16/+15 |
| | | | | | | | | | | | | | | | | | | | | | | | | * rewords a few awkwardly worded sentences * adds some punctuation * adds a few missing words | ||||
* | | | | Merge pull request #21512 from X0nic/guides-clarify-timeout-error | Yves Senn | 2015-09-08 | 1 | -1/+1 |
|\ \ \ \ | | | | | | | | | | | [Rails Guides] clarify `ActiveRecord::ConnectionTimeoutError` | ||||
| * | | | | [Rails Guides] clarify `ActiveRecord::ConnectionTimeoutError` | Nathan Lee | 2015-09-05 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Original: * ActiveRecord::ConnectionTimeoutError - could not obtain a database connection within 5 seconds. The max pool size is currently 5; consider increasing it: Modified version: * ActiveRecord::ConnectionTimeoutError - could not obtain a database connection within 5.000 seconds (waited 5.000 seconds) [ci skip] | ||||
* | | | | | Replace AR with ActiveRecord to make it more readable [ci skip] | arvind | 2015-09-08 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | Merge pull request #21534 from Vratislav/clarify-custom-config-guide | Rafael Mendonça França | 2015-09-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | [Rails Guides] Clarify custom code configuration [ci skip] | ||||
* | | | | | Removed Extra ‘the’ [ci skip] | Ronak Jangir | 2015-09-06 | 1 | -1/+1 |
|/ / / / | |||||
* | | | | fix module name typo in API app guide [ci skip] | yuuji.yaginuma | 2015-09-04 | 1 | -1/+1 |
| | | | | |||||
* | | | | add a description of the return value that was missing [ci skip] | yuuji.yaginuma | 2015-09-03 | 1 | -1/+1 |
| | | | | |||||
* | | | | [ci skip] fix invalid package name for libmysqlclient-dev | Ignatius Reza | 2015-09-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | tested on Ubuntu Desktop 15.04 | ||||
* | | | | typo "description not clear corrected with proper description and ↵ | kishore-mohan | 2015-09-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | action_controller_overview file Rails' -> Rails" [ci skip] | ||||
* | | | | typo fix [ci skip] | amitkumarsuroliya | 2015-09-01 | 1 | -1/+1 |
| | | | | | | | | | | | | sub-project's should be sub-projects' at all places | ||||
* | | | | Merge pull request #17351 from akshat-sharma/master | Rafael Mendonça França | 2015-09-01 | 1 | -0/+10 |
|\ \ \ \ | | | | | | | | | | | | | | | | Add case_sensitive option for confirmation validation |