Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | removes usage of Object#in? from the code base (the method remains defined ↵ | Xavier Noria | 2012-08-06 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | | | | | by Active Support) Selecting which key extensions to include in active_support/rails made apparent the systematic usage of Object#in? in the code base. After some discussion in https://github.com/rails/rails/commit/5ea6b0df9a36d033f21b52049426257a4637028d we decided to remove it and use plain Ruby, which seems enough for this particular idiom. In this commit the refactor has been made case by case. Sometimes include? is the natural alternative, others a simple || is the way you actually spell the condition in your head, others a case statement seems more appropriate. I have chosen the one I liked the most in each case. | ||||
* | [guides] fix reference to railties directory, guides are no longer there | Rafael Magana | 2012-05-28 | 1 | -1/+1 |
| | |||||
* | [guides] guides:generate:kindle is the new interface to generate .mobi file ↵ | Rafael Magana | 2012-05-28 | 1 | -5/+0 |
| | | | | instead of using KINDLE=1 | ||||
* | [guides] get rid of any reference to the generator script since rake tasks ↵ | Rafael Magana | 2012-05-28 | 1 | -1/+1 |
| | | | | are now the new interface | ||||
* | [guides] update generator.rb to refer to guides:generate instead of ↵ | Rafael Magana | 2012-05-27 | 1 | -1/+1 |
| | | | | generate_guides | ||||
* | Make RedCloth not convert double hyphens to emdashes. Closes #5292 | Vijay Dev | 2012-05-06 | 1 | -0/+6 |
| | | | | | | | | | | As mentioned in http://redcloth.org/textile/writing-paragraph-text/#dashes RedCloth converts double hyphens to emdashes. This causes problems in the guides where options like --database, --full are rendered incorrectly. This commit fixes it by customizing the emdash method in the RedCloth::Formatters::HTML module to just return '--'. See their FAQ http://redcloth.org/faq in the section 'How do I customize RedCloth?' | ||||
* | moves the guides up to the root directory | Xavier Noria | 2012-03-17 | 5 | -0/+517 |