Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | view/views, asset/assets | Prathamesh Sonpatki | 2013-03-24 | 2 | -2/+2 |
| | |||||
* | s/app\/model\//app\/models\//g | Akira Matsuda | 2013-03-24 | 2 | -6/+6 |
| | |||||
* | Typo: Migration class name would use plural | Chao Ren | 2013-03-23 | 1 | -1/+1 |
| | |||||
* | Changed 'args' to 'arguments' when used in places other than code with ↵ | Prathamesh Sonpatki | 2013-03-24 | 2 | -2/+2 |
| | | | | fixing few more typos | ||||
* | Add minitest-spec-rails to guide's testing options | Ken Collins | 2013-03-22 | 1 | -0/+1 |
| | |||||
* | fix the initializer block example and clarify | Carlos Puchol | 2013-03-22 | 1 | -2/+2 |
| | | | | | clarify that the contents of the block is expected to return a string. the previous example executed puts and the initializer got nothing. also, made it consistent with the single-line example to be more clear as to what's going on | ||||
* | Using American English spellings over British style spellings | Prathamesh Sonpatki | 2013-03-21 | 1 | -2/+2 |
| | |||||
* | Added link to Turbolinks Railscast | Prathamesh Sonpatki | 2013-03-21 | 1 | -0/+1 |
| | |||||
* | Update documentation for Where chained modifiers. | Ryan Sandridge | 2013-03-19 | 1 | -7/+3 |
| | | | | | where.like and where.not_like were removed in 8d02afeaee, but the guide was not updated. | ||||
* | fix introduced `:` ; fix another typo | Vipul A M | 2013-03-20 | 2 | -2/+2 |
| | |||||
* | more typos in guides | Vipul A M | 2013-03-20 | 2 | -2/+2 |
| | |||||
* | The default route has been removed | Trevor Turk | 2013-03-18 | 1 | -1/+1 |
| | |||||
* | Capitalize first letter in sentence | Mikhail Dieterle | 2013-03-16 | 1 | -1/+1 |
| | |||||
* | Update action_controller_overview.md | Mikhail Dieterle | 2013-03-16 | 1 | -2/+2 |
| | |||||
* | fix markup of controllers guide | Mikhail Dieterle | 2013-03-16 | 1 | -1/+1 |
| | |||||
* | fix typo in form helpers guide | Mikhail Dieterle | 2013-03-15 | 1 | -1/+1 |
| | |||||
* | added details to section 4.1.2 of the Asset Pipeline guide, describing how ↵ | Tim Lowrimore | 2013-03-15 | 1 | -1/+29 |
| | | | | to configure Apache to serve the gzipped version of the precompiled assets | ||||
* | Should be a symbol not string to defer the choice of layout. | Limon Lin | 2013-03-15 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | do some typo fixing | Vipul A M | 2013-03-14 | 4 | -5/+5 |
| | |||||
* | fix missing to | Vipul A M | 2013-03-14 | 1 | -1/+1 |
| | |||||
* | fix absence validator doc for boolean field | Angelo capilleri | 2013-03-13 | 1 | -2/+2 |
| | |||||
* | absence validator doc | Angelo capilleri | 2013-03-13 | 1 | -0/+41 |
| | |||||
* | I think "uniq" is more Rails-y than select("distinct(categories.id)") | capps | 2013-03-11 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2013-03-10 | 7 | -14/+90 |
|\ | |||||
| * | copy edits [ci skip] | Vijay Dev | 2013-03-10 | 2 | -4/+4 |
| | | |||||
| * | fixed typo in strong parameters example | Yves Senn | 2013-03-09 | 1 | -1/+1 |
| | | |||||
| * | strong parameter example for hashes with integer keys. | Yves Senn | 2013-03-09 | 1 | -0/+14 |
| | | | | | | | | | | This replicates the situation described in https://github.com/rails/strong_parameters/issues/114 | ||||
| * | Adding a note for :body option in `mail` method. | Fabrizio Regini | 2013-03-08 | 1 | -0/+13 |
| | | |||||
| * | fixing typo in the merging scopes section | Neeraj Singh | 2013-03-08 | 1 | -4/+3 |
| | | |||||
| * | Explained how merging of scope works | Neeraj Singh | 2013-03-08 | 1 | -0/+56 |
| | | |||||
| * | Some copy edit and formatting for upgrading guide. | Hendy Tanata | 2013-03-08 | 1 | -3/+3 |
| | | |||||
| * | remove the new metadata note in Rails 4 upgrade guide | Alex Robbin | 2013-03-07 | 1 | -6/+0 |
| | | | | | | | | this was pulled out of Rails 4, see rails/rails#8399 for the discussion | ||||
| * | fixes active_record_querying #pluck example | awilliams | 2013-03-07 | 1 | -1/+1 |
| | | |||||
| * | Typppo | Akira Matsuda | 2013-03-06 | 2 | -3/+3 |
| | | |||||
* | | replace non-breaking spaces with normal spaces [ci skip] | Yves Senn | 2013-03-07 | 2 | -4/+4 |
| | | |||||
* | | Merge pull request #9507 from senny/9483_migrations_without_transactions | Rafael Mendonça França | 2013-03-06 | 1 | -1/+5 |
|\ \ | |/ |/| | Transactions can be turned off per Migration | ||||
| * | transactions can be turned off per Migration. | Yves Senn | 2013-03-05 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | | | | | | | Closes #9483. There are SQL Queries that can't run inside a transaction. Since the Migrator used to wrap all Migrations inside a transaction there was no way to run these queries within a migration. This patch adds `self.disable_ddl_transaction!` to the migration to turn transactions off when necessary. | ||||
* | | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2013-03-05 | 3 | -5/+3 |
|\ \ | |/ |/| | |||||
| * | Remove reference to BugMash. Link hasn't been updated in 4 years. | Jonathan Roes | 2013-03-05 | 1 | -2/+0 |
| | | |||||
| * | Add explanation of :dependent => :restrict | David Deller | 2013-03-01 | 1 | -1/+1 |
| | | | | | | Based on information here: http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html#method-i-has_many | ||||
| * | Reverting commit regarding public/index.html (no longer in Rails 4.) | Christine Hertzel | 2013-03-01 | 1 | -2/+0 |
| | | | | | | | | This reverts commit f8461f73c77c186ad0aa735fe9877990bffe1990. | ||||
| * | Fixed grammatical error and simplified paragraph concerning controllers. | Christine Hertzel | 2013-03-01 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Chelsea Macaluso <c.macaluso@modcloth.com> | ||||
| * | Clarified removal of public/index.html file | Chelsea Macaluso | 2013-03-01 | 1 | -0/+2 |
| | | | | | | | | Signed-off-by: Trent Michaels <t.michaels@modcloth.com> | ||||
| * | Clarified need to remove existing code in welcome index. | Trent Michaels | 2013-03-01 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Chelsea Macaluso <c.macaluso@modcloth.com> | ||||
* | | Fix typo in AC overview guide [ci skip] | Carlos Antonio da Silva | 2013-03-05 | 1 | -1/+1 |
| | | |||||
* | | example for `accepts_nested_attribtues_for` and strong parameters. | Yves Senn | 2013-03-05 | 1 | -0/+9 |
| | | | | | | | | Closes #9558. | ||||
* | | strong parameters example for default values using `fetch`. [ci skip] | Yves Senn | 2013-03-05 | 1 | -0/+12 |
| | | | | | | | | Origin: #9534. | ||||
* | | adds guides/.document to tell rdoc not to process this directory | Xavier Noria | 2013-03-04 | 1 | -0/+0 |
| | | | | | | | | | | | | When the Rails 4 gem is installed rdoc sees markdown files below the guides directory and processes them. With an empty .document file we prevent that from happening. Thanks to @drbrain for the tip. | ||||
* | | add prompt to 422 page to check logs | Nihad Abbasov | 2013-03-04 | 1 | -2/+3 |
| | | |||||
* | | Created an unscope method for removing relations from a chain of | wangjohn | 2013-03-03 | 1 | -0/+21 |
| | | | | | | | | | | relations. Specific where values can be unscoped, and the unscope method still works when relations are merged or combined. |