Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added a lot of Oxford commas | Anthony Crumley | 2018-05-10 | 1 | -1/+1 |
| | | | | | | | [ci skip] A regular expression was used to find a lot of missing Oxford commas and add them. The regular expression was as follows. ", ([a-zA-Z0-9.\`:'\"]+ ){1,6}(or|and) " | ||||
* | Cosmetic fixes [ci skip] | Yauheni Dakuka | 2017-10-06 | 1 | -1/+1 |
| | |||||
* | new missing backquotes [ci skip] | Yauheni Dakuka | 2017-09-25 | 1 | -2/+2 |
| | |||||
* | Update plugins.md [ci skip] | Yauheni Dakuka | 2017-09-17 | 1 | -1/+1 |
| | |||||
* | missing backquotes [ci skip] | Yauheni Dakuka | 2017-08-22 | 1 | -2/+2 |
| | |||||
* | Update guides/source/plugins.md [ci skip] | bogdanvlviv | 2017-08-15 | 1 | -33/+24 |
| | |||||
* | Use mattr_accessor default: option throughout the project | Genadi Samokovarov | 2017-06-03 | 1 | -4/+2 |
| | |||||
* | When referring to Rails, be consistent in usage of capitalized form, unless ↵ | Vipul A M | 2016-08-19 | 1 | -1/+1 |
| | | | | it is used in context of a command like bin/rails or the rails directory [ci skip] | ||||
* | rails -> Rails [ci skip] | Santosh Wadghule | 2016-07-12 | 1 | -1/+1 |
| | |||||
* | use bin/rails default instead of rake commands [ci skip] | Gaurav Sharma | 2016-01-19 | 1 | -1/+1 |
| | | | I go through the `http://edgeguides.rubyonrails.org/` and found `rake` commands in various files that are in RAILS 5.0 implement by `bin/rails` command. I try to change all that can be directly use `bin/rails …` | ||||
* | use `bin/test` in plugins guide [ci skip] | yuuji.yaginuma | 2015-12-22 | 1 | -32/+67 |
| | | | | | `bin/test` can use the same API as the `bin/rails test`, since it is possible to run a flexible test than rake, I think better to use a guide even `bin/test`. | ||||
* | Introduce ApplicationRecord, an Active Record layer supertype | Genadi Samokovarov | 2015-12-16 | 1 | -10/+25 |
| | | | | | | | | | | | | | | | | It's pretty common for folks to monkey patch `ActiveRecord::Base` to work around an issue or introduce extra functionality. Instead of shoving even more stuff in `ActiveRecord::Base`, `ApplicationRecord` can hold all those custom work the apps may need. Now, we don't wanna encourage all of the application models to inherit from `ActiveRecord::Base`, but we can encourage all the models that do, to inherit from `ApplicationRecord`. Newly generated applications have `app/models/application_record.rb` present by default. The model generators are smart enough to recognize that newly generated models have to inherit from `ApplicationRecord`, but only if it's present. | ||||
* | [ci skip] fix inconsistent indentation | Jesse Doyle | 2015-11-17 | 1 | -1/+1 |
| | |||||
* | remove link to outdated article in plugins guide [ci skip] | yuuji.yaginuma | 2015-08-28 | 1 | -1/+0 |
| | | | | linked article is a description of the plugins in Rails 2.1. | ||||
* | use public Module#include instead of send :include [ci skip] | yuuji.yaginuma | 2015-03-09 | 1 | -3/+3 |
| | |||||
* | - Changed `IN` to `ON` in markdown renderer condition | Vipul A M | 2015-01-14 | 1 | -1/+1 |
| | | | | - Changed `IN` to `ON` in all note sentences in guides. | ||||
* | warn about reading guides in GitHub | Xavier Noria | 2014-12-23 | 1 | -0/+2 |
| | | | | References #18148. | ||||
* | `bin/rake` does not exist in plugin directory [ci skip] | yuuji.yaginuma | 2014-12-22 | 1 | -1/+1 |
| | |||||
* | technical correction in guides under 'Generating an engine' | David Elliott | 2014-09-28 | 1 | -2/+2 |
| | | | | `bin/rails` would not exist outside of a rails project | ||||
* | [ci skip] Update plugin doc with the latest rails | Yukio Mizuta | 2014-08-18 | 1 | -21/+21 |
| | |||||
* | [ci skip] Fix broken url in plugins guide | yuuji.yaginuma | 2014-08-12 | 1 | -1/+1 |
| | |||||
* | Fix typo in plugins doc | Guillermo Álvarez Fernández | 2014-08-08 | 1 | -1/+1 |
| | |||||
* | Use generated binstubs in guides examples. | Josef Šimánek | 2014-05-20 | 1 | -7/+7 |
| | | | | [ci skip] | ||||
* | [skip ci] Standardized punctuation. | ch33hau | 2014-02-25 | 1 | -3/+3 |
| | |||||
* | Automatically maintain test database schema | Jon Leighton | 2014-01-02 | 1 | -1/+0 |
| | | | | | | | | | | | | | | * Move check from generated helper to test_help.rb, so that all applications can benefit * Rather than just raising when the test schema has pending migrations, try to load in the schema and only raise if there are pending migrations afterwards * Opt out of the check by setting config.active_record.maintain_test_schema = false * Deprecate db:test:* tasks. The test helper is now fully responsible for maintaining the test schema, so we don't need rake tasks for this. This is also a speed improvement since we're no longer reloading the test database on every call to "rake test". | ||||
* | Formatting, capitalization, and punctuation fixes [ci skip] | Ben Lewis | 2013-12-04 | 1 | -13/+17 |
| | | | Second try on this commit. | ||||
* | Call `rails plugin new yaffle` in the plugins guide. [ci skip] | Ulysse Carion | 2013-10-08 | 1 | -3/+9 |
| | | | | It's confusing to not explicitly do this step. | ||||
* | [ci skip] Update plugins.md | Harshad Sabne | 2013-09-14 | 1 | -6/+6 |
| | | | Highlighted code. | ||||
* | cleans the guides sources from fancy non-ASCII stuff | Xavier Noria | 2013-08-23 | 1 | -1/+1 |
| | |||||
* | fixes the test case of that plugins | Rajarshi Das | 2013-07-18 | 1 | -4/+4 |
| | |||||
* | Fix typo in rails plugins guide | Manish Valechha | 2013-01-27 | 1 | -1/+1 |
| | |||||
* | Remove references to Rails versions. | Steve Klabnik | 2012-12-07 | 1 | -4/+1 |
| | | | | | | | | There's no reason for guides to reference old behaviors. They should be current as of the versions of Rails that they ship with, and including older information just clutters thing. I discussed this change with @fxn and he agrees. | ||||
* | Fixed grammar in a lot of guide prologues. | Katie Oldaker | 2012-12-07 | 1 | -2/+2 |
| | |||||
* | Normalize on 'After reading this guide, you will know:' | Steve Klabnik | 2012-11-29 | 1 | -1/+1 |
| | | | | | We have three or four different introduction sentences to the guides. After this commit, we use the same one everywhere. | ||||
* | Add periods to the bullet points in guides. | Steve Klabnik | 2012-11-29 | 1 | -4/+4 |
| | | | | Talked with @fxn about this. Bullet points should have periods at the ends. | ||||
* | Switch to 1.9 hash syntax (guides) | Agis Anastasopoulos | 2012-11-16 | 1 | -2/+2 |
| | |||||
* | Fix remaining formatting problems in the guide | Prem Sichanugrist | 2012-09-17 | 1 | -35/+35 |
| | |||||
* | Convert all the links into Markdown format | Prem Sichanugrist | 2012-09-17 | 1 | -8/+8 |
| | |||||
* | Convert all inline codes to Markdown syntax | Prem Sichanugrist | 2012-09-17 | 1 | -14/+14 |
| | |||||
* | change shell to bash | Prem Sichanugrist | 2012-09-17 | 1 | -12/+12 |
| | |||||
* | Convert inline code tags to Markdown | Prem Sichanugrist | 2012-09-17 | 1 | -1/+1 |
| | |||||
* | Convert heading tags and heading section | Prem Sichanugrist | 2012-09-17 | 1 | -13/+21 |
| | |||||
* | Convert code blocks into GFM style | Prem Sichanugrist | 2012-09-17 | 1 | -50/+50 |
| | |||||
* | Rename the rest of the guides to Markdown | Prem Sichanugrist | 2012-09-17 | 1 | -0/+430 |