aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-08-07 16:55:28 +0200
committerXavier Noria <fxn@hashref.com>2012-08-07 16:57:28 +0200
commit2f58795e783150f2e1b1f6c64e305703f0061129 (patch)
treecaa757a14597b9d6a65104bc5d85c009f9160820 /activesupport/CHANGELOG.md
parent9cd1f697f1b4dded0f18e13c7ae12c7bd2dab1c0 (diff)
downloadrails-2f58795e783150f2e1b1f6c64e305703f0061129.tar.gz
rails-2f58795e783150f2e1b1f6c64e305703f0061129.tar.bz2
rails-2f58795e783150f2e1b1f6c64e305703f0061129.zip
defines String#indent [closes #7263] [Xavier Noria & Ace Suares]
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 5fcea299f8..70bd1bf4d3 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,5 +1,7 @@
## Rails 4.0.0 (unreleased) ##
+* Add String#indent. *fxn & Ace Suares*
+
* Inflections can now be defined per locale. `singularize` and `pluralize` accept locale as an extra argument. *David Celis*
* `Object#try` will now return nil instead of raise a NoMethodError if the receiving object does not implement the method, but you can still get the old behavior by using the new `Object#try!` *DHH*