diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-06-16 06:46:22 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-06-16 06:46:22 +0000 |
commit | bdf51f958250fe5ed2c3c2f4f79ca6eb1e3dc5b1 (patch) | |
tree | f76aaed13d0a4343384497e4f8eb05f68de6a15a /activesupport | |
parent | 253a2bbefb707fa5f16c61c8db978790cac777d1 (diff) | |
download | rails-bdf51f958250fe5ed2c3c2f4f79ca6eb1e3dc5b1.tar.gz rails-bdf51f958250fe5ed2c3c2f4f79ca6eb1e3dc5b1.tar.bz2 rails-bdf51f958250fe5ed2c3c2f4f79ca6eb1e3dc5b1.zip |
Revealed the man behind the mask!
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1443 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index e24736646f..e33746f82b 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -34,7 +34,7 @@ *1.0.3* (27th March, 2005) -* Fixed Inflector.pluralize to handle capitalized words #932 [bitsweat] +* Fixed Inflector.pluralize to handle capitalized words #932 [Jeremy Kemper] * Added Object#suppress which allows you to make a saner choice around with exceptions to swallow #980. Example: @@ -113,7 +113,7 @@ * Added Inflector.humanize to turn attribute names like employee_salary into "Employee salary". Used by automated error reporting in AR. -* Added availability of class inheritable attributes to the masses #477 [bitsweat] +* Added availability of class inheritable attributes to the masses #477 [Jeremy Kemper] class Foo class_inheritable_reader :read_me @@ -131,13 +131,13 @@ Bar.read_and_write_me = 'bar' Bar.read_and_write_me != Foo.read_and_write_me -* Added Inflections as an extension on String, so Inflector.pluralize(Inflector.classify(name)) becomes name.classify.pluralize #476 [bitsweat] +* Added Inflections as an extension on String, so Inflector.pluralize(Inflector.classify(name)) becomes name.classify.pluralize #476 [Jeremy Kemper] * Added Byte operations to Numeric, so 5.5.megabytes + 200.kilobytes #461 [Marcel Molina] * Fixed that Dependencies.reload can't load the same file twice #420 [Kent Sibilev] -* Added Fixnum#ago/until, Fixnum#since/from_now #450 [bitsweat] +* Added Fixnum#ago/until, Fixnum#since/from_now #450 [Jeremy Kemper] * Added that Inflector now accepts Symbols and Classes by calling .to_s on the word supplied |