Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [ci skip] Removed link to reSRC.io - site closed | Brooks Reese | 2015-08-12 | 1 | -1/+0 |
| | |||||
* | [ci skip] Modify introduction text and bullets to be consistent with other ↵ | Brooks Reese | 2015-08-10 | 1 | -5/+5 |
| | | | | guides | ||||
* | docs, use hash instead of a string for `order`. [ci skip] | Yves Senn | 2015-08-10 | 1 | -1/+1 |
| | | | | Closes #21121 | ||||
* | Merge pull request #21177 from brooksreese/single_crud_operation | Claudio B. | 2015-08-09 | 1 | -1/+3 |
|\ | | | | | [ci skip] Note that each action maps to a specific CRUD operation | ||||
| * | [ci skip] Note that each action maps to a specific CRUD operation | Brooks Reese | 2015-08-09 | 1 | -1/+3 |
| | | |||||
* | | Merge pull request #21166 from brooksreese/migration_seed_explanation | Claudio B. | 2015-08-08 | 1 | -4/+9 |
|\ \ | | | | | | | [ci skip] Give in-depth explanation of migrations vs. seeds.rb | ||||
| * | | [ci skip] Give in-depth explanation of migrations vs. seeds.rb | Brooks Reese | 2015-08-08 | 1 | -4/+9 |
| |/ | |||||
* | | [ci skip] Adding a note to Action Mailer Basics documentation that Google ↵ | melissawahnish | 2015-08-08 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | increased its security measures so using the example for Gmail will return a “Password Incorrect” error, and you will receive an email from Google that they blocked a sign-in attempt. You can change your Gmail settings or use another ESP. I discovered this when I was testing a simple mailer example app and was just going to use my personal Gmail account for the test. I think it would be best to note this change since now Gmail may not be the best option for a quick test. I hope this saves time for other Rails developers. The Gmail example does show a good example of how to configure the smpt settings. | ||||
* | | use uuid method to define the UUID type [ci skip] | yuuji.yaginuma | 2015-08-08 | 1 | -1/+1 |
| | | |||||
* | | [ci skip] Add an explanation for `status` option | yui-knk | 2015-08-08 | 1 | -1/+5 |
| | | |||||
* | | stop using @_env in the controller instance | Aaron Patterson | 2015-08-07 | 1 | -2/+2 |
| | | | | | | | | | | | | | | Actions are processed through `dispatch`, so they should have the request set on them before any user land code can be executed. Lets stop setting _env on the controller, and give access to it through the `env` method. | ||||
* | | Remove XML Serialization from core. | Zachary Scott | 2015-08-07 | 1 | -59/+2 |
|/ | | | | | | | This includes the following classes: - ActiveModel::Serializers::Xml - ActiveRecord::Serialization::XmlSerializer | ||||
* | Fix doc typo | Tom Copeland | 2015-08-07 | 1 | -1/+1 |
| | |||||
* | [ci skip] Remove `identity.active_record` | yui-knk | 2015-08-07 | 1 | -8/+0 |
| | | | | | This is removed by this commit cf: https://github.com/rails/rails/pull/5261 | ||||
* | Added bin/update script to update application automatically | Mehmet Emin İNAÇ | 2015-08-07 | 1 | -1/+1 |
| | | | | | | | | | | use system! fix changelog use bundle check first and use rake use system instead system! for bundle check | ||||
* | Small fix | Alexey Markov | 2015-08-06 | 1 | -1/+1 |
| | |||||
* | Corrected instructions for using Sass | Andreas Lietz | 2015-08-06 | 1 | -4/+4 |
| | |||||
* | Merge pull request #20800 from xijo/make_active_job_locale_aware | Kasper Timm Hansen | 2015-08-04 | 1 | -0/+13 |
|\ | | | | | Make ActiveJob locale aware | ||||
| * | Fixes #20799 | Johannes Opper | 2015-08-04 | 1 | -0/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When `#perform_later` is called the locale isn't stored on the queue, which results in a locale reset when the job is performed. An example of the problem: I18n.locale = 'de' HelloJob.perform_now # german message, correct but I18n.locale = 'de' HelloJob.perform_later # english message, incorrect This PR attaches the current I18n.locale to every job during the serialization process. It is then restored during deserialization and used to perform the job with the correct locale. It falls back to the default locale if no serialized locale is found in order to provide backward compatibility with previously stored jobs. It is not necessary to clear the queue for the update. | ||||
* | | Merge pull request #21076 from r11runner/guide-join-tables | Claudio B. | 2015-08-03 | 2 | -10/+21 |
|\ \ | | | | | | | migration and association guides: added some remarks about join tables | ||||
| * | | [ci skip] migration and association guides: added some remarks about join tables | r11runner | 2015-08-04 | 2 | -10/+21 |
| | | | |||||
* | | | Correctly close a fenced code block [ci skip] | Robin Dupret | 2015-08-03 | 1 | -0/+1 |
| | | | |||||
* | | | Add note to routing guide about overriding defaults [ci skip] | Andrew White | 2015-08-03 | 1 | -0/+2 |
| | | | | | | | | | | | | Fixes #21085. | ||||
* | | | Merge pull request #21052 from robin850/caching-guide | Kasper Timm Hansen | 2015-08-03 | 2 | -51/+160 |
|\ \ \ | | | | | | | | | Publish the "Caching with Rails" guide | ||||
| * | | | Improve the "Caching with Rails" guide's introduction [ci skip] | claudiob | 2015-08-03 | 1 | -2/+14 |
| | | | | |||||
| * | | | Add a section about "Collection caching" [ci skip] | Robin Dupret | 2015-08-03 | 1 | -0/+23 |
| | | | | |||||
| * | | | Publish the "Caching with Rails" guide [ci skip] | Celestino Gomes | 2015-07-28 | 1 | -0/+4 |
| | | | | |||||
| * | | | Add a "Managing dependencies" part to the caching guide [ci skip] | Robin Dupret | 2015-07-28 | 1 | -0/+87 |
| | | | | |||||
| * | | | Tiny edits to the "Caching with Rails" guide | Robin Dupret | 2015-07-28 | 1 | -49/+32 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix a few typos * Remove reference to the old `memcache-client` gem * Remove the "ActiveSupport::Cache::EhCacheStore" part from the guide as the gem doesn't seem to be maintained anymore. * Move the "Custom Cache Stores" part under the "AS::Cache::Store" part as they are pretty related. [ci skip] | ||||
* | | | | correct example of button_tag [ci skip] | yuuji.yaginuma | 2015-08-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | wrapper div has been removed in cbb917455f306cf5818644b162f22be09f77d4b2 | ||||
* | | | | [ci skip] | yui-knk | 2015-08-01 | 1 | -0/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add descriptions about `ActiveRecord::Base#to_param` to * `ActionDispatch::Routing::Base#match` * Overriding Named Route Parameters (guide) When passes `:param` to route definision, always `to_param` method of related model is overridden to constructe an URL by passing these model instance to named_helper. | ||||
* | | | | Merge pull request #21063 from cmisenas/fix-guides-warning-env | Yves Senn | 2015-07-31 | 1 | -1/+1 |
|\ \ \ \ | | | | | | | | | | | Fix WARNINGS flag inside guides/Rakefile | ||||
| * | | | | Fix WARNINGS flag inside guides/Rakefile | Jade Misenas | 2015-07-29 | 1 | -1/+1 |
| | |/ / | |/| | | |||||
* / | | | Remove yepnope mention from form helpers guide because it's deprecated [ci skip] | Anton Chuchkalov | 2015-07-30 | 1 | -3/+2 |
|/ / / | |||||
* / / | [ci skip] `field_error_proc` is used in ↵ | yui-knk | 2015-07-29 | 1 | -1/+1 |
|/ / | | | | | | | | | | | `ActionView::Helpers::ActiveModelInstanceTag` so replace `Active Record` with `Active Model` | ||||
* | | Tiny documentation edits [ci skip] | Robin Dupret | 2015-07-28 | 1 | -4/+6 |
| | | |||||
* | | [ci skip] Add a link to action_controller_overview.html | yui-knk | 2015-07-28 | 1 | -1/+1 |
| | | |||||
* | | [ci skip] Now Action View is completely separated from Action Pack | yui-knk | 2015-07-28 | 1 | -1/+1 |
| | | |||||
* | | Ryan Bigg has changed jobs. | Ryan Bigg | 2015-07-27 | 1 | -1/+1 |
| | | |||||
* | | Fix minor typo in testing guide | Dave Powers | 2015-07-20 | 1 | -1/+1 |
| | | | | | | [ci skip] | ||||
* | | Merge pull request #20763 from maurogeorge/default_scope_create-doc | Sean Griffin | 2015-07-18 | 1 | -0/+12 |
|\ \ | | | | | | | Add a note about default_scope and create records [ci skip] | ||||
| * | | Add a note about default_scope and create records | Mauro George | 2015-07-16 | 1 | -0/+12 |
| | | | | | | | | | | | | [ci skip] | ||||
* | | | Replaced render :text with render :plain in AC gem bug report template | Prathamesh Sonpatki | 2015-07-18 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | - Followup of https://github.com/rails/rails/pull/20929. [ci skip] | ||||
* | | | use `plain` option instead of deprecated `text` option | yuuji.yaginuma | 2015-07-18 | 1 | -1/+1 |
| | | | | | | | | | | | | this will silence deprecation warnings | ||||
* | | | Merge pull request #20909 from yui-knk/fix/test-commnad | Claudio B. | 2015-07-17 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | [ci skip] Add `bundle exec` to test run command | ||||
| * | | | [ci skip] Add `bundle exec` to test run command | yui-knk | 2015-07-17 | 1 | -1/+1 |
| | | | | |||||
* | | | | [skip ci] Improve grammar/style in DB pooling guide. | Tim Wade | 2015-07-16 | 1 | -7/+7 |
|/ / / | |||||
* | | | [ci skip] add note for individual stub creation | Aditya Kapoor | 2015-07-15 | 1 | -0/+16 |
| | | | |||||
* | | | Merge pull request #20736 from antoine-lizee/docs | Robin Dupret | 2015-07-13 | 2 | -1/+6 |
|\ \ \ | | | | | | | | | [ci skip] docs: making clear that perform_caching has a limited impact | ||||
| * | | | [ci skip] doc: making clear that perform_caching has a limited impact | antoine.lizee | 2015-07-13 | 2 | -1/+6 |
| | | | |