Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Wrong documentation about Rails autoload on active_jobs_basics doc [ci skip] | Mehmet Emin İNAÇ | 2015-06-14 | 1 | -19/+0 |
| | | | | By default Rails automaticaly loads all files under the app directory | ||||
* | Merge pull request #20511 from ZeroMax-dev/master | Zachary Scott | 2015-06-14 | 1 | -12/+41 |
|\ | | | | | Extended 'Active Job Basics' guide with more detailed information | ||||
| * | Extended 'Active Job Basics' edge guide with more detailed information and ↵ | Andreas Metzger | 2015-06-14 | 1 | -12/+41 |
| | | | | | | | | | | | | an additional step [ci skip] Normalized use of 'queueing'/'queuing' in the document. | ||||
* | | Add fixture use case to testing.md. | Staphany Park | 2015-06-13 | 1 | -0/+7 |
| | | | | | | | | | | I think people would find it useful to know that you can pass in multiple fixture names to get an array of all the fixtures. I've found this useful in my own app. It looks like there already a test case that supports this feature (https://github.com/rails/rails/blob/master/activerecord/test/cases/fixtures_test.rb#L398), but it's just not documented here. I look forward to your feedback! | ||||
* | | fix doc about foreign key name [ci skip] | yuuji.yaginuma | 2015-06-12 | 1 | -1/+2 |
| | | | | | | | | this behavior was changed in b8e1f202676b4788c56241b124c401beff9f4014 | ||||
* | | It's rails new my_api --api | Santiago Pastorino | 2015-06-11 | 1 | -1/+1 |
| | | |||||
* | | Change guide heading from - to = | Santiago Pastorino | 2015-06-11 | 1 | -1/+1 |
| | | |||||
* | | Add API only apps guide | Santiago Pastorino | 2015-06-11 | 1 | -0/+435 |
| | | |||||
* | | Revert "Grammar correction" | Matthew Draper | 2015-06-11 | 1 | -1/+1 |
| | | | | | | | | This reverts commit 67e467b9a5c113177aff925f07136e9b7f2a1eda. | ||||
* | | Grammar correction | hemali jain | 2015-06-11 | 1 | -1/+1 |
|/ | |||||
* | Remove NOTE related to format.js [ci skip] | Prathamesh Sonpatki | 2015-06-09 | 1 | -4/+0 |
| | | | | | - The example for which this NOTE was written was removed in https://github.com/rails/rails/pull/20493. | ||||
* | Removed AJAX example with poor convention adherence | Daniel Steele | 2015-06-09 | 1 | -24/+0 |
| | | | The removed section promotes putting JS code directly inside the controller, this is not in line with convention. | ||||
* | update Rails Command Line guide page | Gaurav Sharma | 2015-06-09 | 1 | -2/+2 |
| | |||||
* | Merge pull request #20463 from yui-knk/fix/guide1 | Zachary Scott | 2015-06-08 | 1 | -1/+1 |
|\ | | | | | [ci skip] Fix hours to minutes in `select_minute` | ||||
| * | [ci skip] Fix hours to minutes in `select_minute` | yui-knk | 2015-06-07 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #20381 from kuldeepaggarwal/engines-docs | Yves Senn | 2015-06-08 | 1 | -5/+5 |
|\ \ | | | | | | | fix docs for Engines [ci skip] | ||||
| * | | [ci skip]fix docs for Engines | Kuldeep Aggarwal | 2015-05-30 | 1 | -5/+5 |
| | | | |||||
* | | | Fix core_text -> core_ext | Seiei Miyagi | 2015-06-08 | 1 | -1/+1 |
| | | | | | | | | | | | | [ci skip] | ||||
* | | | Merge pull request #20471 from y-yagi/add_instantiation_to_instrumentation_guide | Zachary Scott | 2015-06-07 | 1 | -0/+14 |
|\ \ \ | | | | | | | | | add `instantiation.active_record` hook to instrumentation guide [ci skip] | ||||
| * | | | add `instantiation.active_record` hook to instrumentation guide [ci skip] | yuuji.yaginuma | 2015-06-08 | 1 | -0/+14 |
| | | | | | | | | | | | | | | | | the hook was added in 2a0d97bc89fc230241453cbbf55621309e1f3ac6 | ||||
* | | | | Add missing NOTE for Time extensions' location | Pierre | 2015-06-07 | 1 | -0/+2 |
|/ / / | |||||
* | / | Tiny documentation edits [ci skip] | Robin Dupret | 2015-06-07 | 2 | -2/+5 |
| |/ |/| | |||||
* | | A few documentation tweaks [ci skip] | Robin Dupret | 2015-06-07 | 4 | -6/+14 |
| | | | | | | | | [Robin Dupret & Shunsuke Aida] | ||||
* | | [ci skip] Declare `product` as `_product partial` | yui-knk | 2015-06-07 | 1 | -1/+2 |
| | | |||||
* | | Output an error message and raise an error if bundler 1.10.x is not ↵ | akihiro17 | 2015-06-06 | 6 | -6/+36 |
| | | | | | | | | installed when reporting bugs | ||||
* | | Merge pull request #20423 from Erol/remove-assets-version-documentation | Rafael Mendonça França | 2015-06-06 | 1 | -2/+0 |
|\ \ | | | | | | | Remove `config.assets.version` from Configuring Rails Application Guide | ||||
| * | | Remove reference to assets version option. | Erol Fornoles | 2015-06-03 | 1 | -2/+0 |
| | | | |||||
* | | | Add the bug report templates to the Travis CI build | Roque Pinel | 2015-06-05 | 4 | -9/+24 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The bug report templates are now executed from the `ci/travis.rb` when `GEM` contains `guides`. I started by creating a `test` task in `guides/Rakefile` to handle this, but since inline `gemfile` must not be executed with `bundle exec`, that rake task would not be consistent with others. So I went back by executing them directly from `Build`. Use inline Gemfile dependency when reporting gem bugs | ||||
* | | | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2015-06-05 | 2 | -4/+4 |
|\ \ \ | |||||
| * | | | [ci skip] Add `.` | yui-knk | 2015-06-01 | 1 | -1/+1 |
| | | | | |||||
| * | | | [ci skip] Upcase `when` | yui-knk | 2015-05-16 | 1 | -1/+1 |
| | | | | |||||
| * | | | [ci skip] Fix to a singular form (person has one contact_detail) | yui-knk | 2015-05-16 | 1 | -2/+2 |
| | | | | |||||
* | | | | Use inline Gemfile dependency when reporting bugs | Roque Pinel | 2015-06-03 | 3 | -33/+18 |
| | | | | | | | | | | | | | | | | | | | | With Bundler `1.10.3`, it is possible to list the gems inline without the need to create a `Gemfile` if none is found in the current directory. | ||||
* | | | | Document config.action_mailer.deliver_later_queue_name | Rafael Mendonça França | 2015-06-03 | 1 | -0/+2 |
| |/ / |/| | | | | | | | | | | | | | | Also add a CHANGELOG entry for #18587 [ci skip] | ||||
* | | | [ci skip] fix the `collection.clear` guide | Roque Pinel | 2015-06-02 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improve the guide about `has_many` `collection.clear` to indicate the behavior for each dependent strategy according to `collection.delete_all`. Based on #17179, I changed the `collection.delete` docs to also clarify the default strategy for each `hm` and `hm:t` associations. Fixes #20170. | ||||
* | | | Fixed typos in guide | manish-shrivastava | 2015-06-01 | 4 | -4/+6 |
| | | | |||||
* | | | Merge pull request #20138 from tgxworld/deprecated_assert_template | Rafael Mendonça França | 2015-06-01 | 1 | -58/+12 |
|\ \ \ | | | | | | | | | Deprecate `assert_template` and `assigns()`. | ||||
| * | | | Remove `assigns` and `assert_template`. | Guo Xiang Tan | 2015-05-30 | 1 | -58/+12 |
| | |/ | |/| | |||||
* | | | Merge pull request #20394 from mechanicles/use-sym | Matthew Draper | 2015-06-01 | 1 | -2/+5 |
|\ \ \ | | | | | | | | | [ci skip] Used 'instance_variables' in example for consistency. | ||||
| * | | | [ci skip] Used 'instance_variables' in example for consistency. | Santosh Wadghule | 2015-06-01 | 1 | -2/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Found that checking instance_variables elements using string object gives us 'false' value. `instance_variables.include? "@articles" # => false` - Used only 'instance_variables' instead of using '.include?' on it. So that it will return recent instance variables list. | ||||
* | | | | Remove description of `dependency_loading` option | Nikolay Kondratyev | 2015-06-01 | 1 | -2/+0 |
|/ / / | | | | | | | | | | | | | | | | This option has been removed in e6747d87f3a061d153215715d56acbb0be20191f [ci skip] | ||||
* | | | [ci skip] Fix `above` -> `below` | yui-knk | 2015-06-01 | 1 | -1/+1 |
| | | | |||||
* | | | Fixed typos. [ci skip] | Morgan Owens | 2015-05-31 | 1 | -5/+5 |
| | | | |||||
* | | | no rails command short-cuts in the getting-started guide. [ci skip] | Yves Senn | 2015-05-31 | 1 | -1/+1 |
|/ / | | | | | | | The full command name is more expressive. | ||||
* | | Updating the guides for Enumerable#pluck | Kevin Deisz | 2015-05-28 | 1 | -0/+10 |
| | | |||||
* | | Merge pull request #20017 from eliotsykes/configurable-static-index-filename | Rafael Mendonça França | 2015-05-28 | 1 | -1/+1 |
|\ \ | | | | | | | | | | config.static_index configures directory Index "index.html" filename | ||||
| * | | config.static_index configures directory index "index.html" filename | Eliot Sykes | 2015-05-28 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | Set `config.static_index` to serve a static directory index file not named `index`. For example, to serve `main.html` instead of `index.html` for directory requests, set `config.static_index` to `"main"`. | ||||
* | | | removed erroneous line. Corrected presence validation example. | Jurnell Cockhren | 2015-05-28 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | Addresses #20343. Removes erroneous line of code in the sample codeblock. | ||||
* | | | Merge pull request #20313 from s3ymd/master | Arthur Nogueira Neves | 2015-05-28 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | [ci skip] Fix block parameter of assert_no_difference | ||||
| * | | | [ci skip] Fix block parameter of assert_no_difference | Hiromichi Yamada | 2015-05-28 | 1 | -1/+1 |
| |/ / |