aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
Commit message (Collapse)AuthorAgeFilesLines
* Rename Posts to Articles in Guides, continuation of 2d446e77 / #13774 [ci skip]John Kelly Ferguson2014-05-2119-655/+654
|
* Merge pull request #15231 from ↵Guillermo Iguaran2014-05-211-1/+1
|\ | | | | | | | | khusnetdinov/fix_typo_guides_active_support_instrumentation Fix typo guides/source/active_support_instrumentation.md [ci-skip]
| * Fix typo guides/source/active_support_instrumentation.mdMarat Khusnetdinov2014-05-221-1/+1
| |
* | fixes in active record query for reorderpeeyush2014-05-211-2/+2
| |
* | Merge pull request #15191 from camsong/masterYves Senn2014-05-201-2/+8
|\ \ | | | | | | | | | | | | | | | Distinguish rake assets:clobber from rake assets:clean [ci skip]
| * | Distinguish rake assets:clobber from rake assets:cleancam song2014-05-201-2/+5
| | |
* | | Use generated binstubs in guides examples.Josef Šimánek2014-05-2016-108/+108
|/ / | | | | | | [ci skip]
* | Merge pull request #15155 from dskang/digestRafael Mendonça França2014-05-191-8/+18
|\ \ | |/ |/| Default config.assets.digests to true in development
| * Default config.assets.digests to true in developmentDan Kang2014-05-171-8/+18
| |
* | Merge pull request #14962 from arunagw/aa-fix-rake-activerecordYves Senn2014-05-192-6/+6
|\ \ | | | | | | Reorganize ActiveRecord tasks [Arun Agrawal & Abd ar-Rahman Hamidi]
| * | Reorganize ActiveRecord tasks [Arun Agrawal & Abd ar-Rahman Hamidi]Arun Agrawal2014-05-162-6/+6
| | |
* | | pg guide, move introductory sentences into main content. [ci skip]Yves Senn2014-05-191-7/+7
| | | | | | | | | | | | This is a reaction to https://github.com/rails/rails/commit/7ca75f3789e316b6f3dc1f8000ec4f85c8ba32ea#commitcomment-6303828
* | | A tiny pass through the PostgreSQL guide [ci skip]Robin Dupret2014-05-181-3/+4
| | |
* | | copy edits[ci skip]Vijay Dev2014-05-181-7/+6
| | |
* | | remove ecosystem link that is brokenGaurav Sharma2014-05-181-1/+0
| |/ |/|
* | Document method visibility for designing API docs. [ci skip]Zachary Scott2014-05-171-0/+34
| | | | | | | | cc https://github.com/rails/rails/issues/14848#issuecomment-41198795
* | fix symbolregonn2014-05-171-1/+1
| |
* | prefer file name instead of filename [ci skip]Vijay Dev2014-05-171-2/+2
| |
* | Replace first person point of view on guides.Hendy Tanata2014-05-163-11/+11
| | | | | | | | [skip ci]
* | doc, pg `hstore` and `json` columns are mapped as `Hash`. [ci skip]Yves Senn2014-05-171-0/+8
| | | | | | | | Closes #15141.
* | remove trailing whitespace. [ci skip]Yves Senn2014-05-172-4/+4
|/
* Merge pull request #15021 from hubertlepicki/allow_custom_host_in_asset_urlRafael Mendonça França2014-05-161-0/+8
|\ | | | | | | Allow custom asset host to be passed in asset_url
| * Improve documentation for asset_urlHubert Łępicki2014-05-081-0/+8
| | | | | | | | Updated CHANGELOG.md with entry about :host in asset_url
* | Document conflicts in `db/schema.rb` [ci skip]Leandro Facchinetti2014-05-161-0/+5
| |
* | Merge pull request #15095 from JuanitoFatas/doc/generatorsRafael Mendonça França2014-05-131-2/+2
|\ \ | | | | | | [ci skip] Fix two factual errors and highlight code in generators guide.
| * | [ci skip] Fix a factual error and highlight code in generators guide.Juanito Fatas2014-05-141-2/+2
| | |
* | | Remove falsy deprecation note in AS guides [ci skip]Genadi Samokovarov2014-05-131-1/+1
|/ / | | | | This is no longer true as @jeremy removed the deprecation in 7a5601c.
* | typo: resulution -> resolution [ci skip]Godfrey Chan2014-05-121-1/+1
| |
* | pg guide, PostgreSQL legacy table view example. [ci skip]Yves Senn2014-05-111-0/+59
| |
* | Merge pull request #15029 from JuanitoFatas/docpatch/routingRafael Mendonça França2014-05-081-11/+11
|\ \ | | | | | | [ci skip] Minor improvements on routing.md.
| * | [ci skip] Minor improvements on routing.md.Juanito Fatas2014-05-091-11/+11
| | |
* | | pg guide, inet code example. [ci skip]Yves Senn2014-05-081-3/+29
| |/ |/|
* | Branch name should match in text and code example.Ivan Tse2014-05-081-1/+1
| | | | | | | | [ci skip]
* | fixed typos in active_record basics [skip ci]vanderhoop2014-05-071-2/+2
| |
* | Update links to new rails version in guides [ci skip]Arun Agrawal2014-05-071-1/+1
| |
* | [ci skip] Add feature section and normalize prologue with other guides.Juanito Fatas2014-05-071-3/+12
|/ | | | | | Also change Json => JSON. Fill Ruby's Range & IPAddr link.
* typo [ci skip]Xavier Noria2014-05-061-1/+1
|
* Merge pull request #14997 from jpcody/nested_value_i18nRafael Mendonça França2014-05-061-0/+13
|\ | | | | Include label value in i18n attribute lookup
| * Include label value in i18n attribute lookupJoshua Cody2014-05-061-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, only the object and method name from the label tag were used when looking up the translation for a label. If a value is given for the label, this ought to be additionally used. The following: # form.html.erb <%= form_for @post do |f| %> <%= f.label :type, value: "long" %> <% end %> # en.yml en: activerecord: attributes: post/long: "Long-form Post" Used to simply return "long", but now it will return "Long-form Post".
* | several enhancements to humanize [closes #12288]Xavier Noria2014-05-061-7/+22
| | | | | | | | | | | | | | | | | | | | * Strips leading underscores. * Changes some unnecessary gsub!s to sub!s. * Replaces some anchors ^, $ with \A, \z. * Documents that human inflection rules are applied. * Documents that words are downcased except acronyms. * Adds an example with an acronym. * Rewords docs.
* | pg guides, some stylistic changes [ci skip]Yves Senn2014-05-061-20/+21
| |
* | pg guide, advanced features [ci skip]Yves Senn2014-05-061-18/+46
| |
* | pg guide, datatypes and examples. [ci skip]Yves Senn2014-05-061-0/+309
| |
* | Guides: output valid HTML5Nate Berkopec2014-05-055-7/+6
|/ | | [ci skip]
* Merge pull request #14961 from jonatack/patch-7Robin Dupret2014-05-041-89/+74
|\ | | | | Follow-up to #14905 and formatting pass [ci skip]
| * Follow-up to #14905 and formatting passJon Atack2014-05-041-89/+74
| | | | | | | | | | | | | | | | on the Getting Started guide. [skip ci] Added 2 changes suggested by @robin850 [skip ci]
* | Rails One Click is not maintained anymore [ci skip]Robin Dupret2014-05-041-1/+1
| | | | | | | | | | | | | | Let's tell people that they should rely on Tokaido instead of Rails One Click. Fixes #14960.
* | Revert "Merge pull request #14940 from arunagw/hbakhtiyor-test-db-namespaces-ar"Yves Senn2014-05-032-6/+6
| | | | | | | | | | This reverts commit fe9859600824268ff614cb3eb48b62c7165a1fbd, reversing changes made to add9560643ef79830febf47fa1228752d1df3502.
* | Reorganize ActiveRecord tasks [Arun Agrawal & Abd ar-Rahman Hamidi]Arun Agrawal2014-05-032-6/+6
|/
* eliminate repetition in guide links for past releases [ci skip]Vijay Dev2014-05-021-10/+1
|