aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2007-06-05 14:09:15 +0000
committerRick Olson <technoweenie@gmail.com>2007-06-05 14:09:15 +0000
commited1ed9ed97f7d30ba8221079365634aa9c4bf24c (patch)
tree4564504ab18ee63adf2191595513141833430245 /activesupport/CHANGELOG
parent319107ae40bc00772f4eaf91ab9531097bc537cb (diff)
downloadrails-ed1ed9ed97f7d30ba8221079365634aa9c4bf24c.tar.gz
rails-ed1ed9ed97f7d30ba8221079365634aa9c4bf24c.tar.bz2
rails-ed1ed9ed97f7d30ba8221079365634aa9c4bf24c.zip
revert [6924]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6946 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG23
1 files changed, 0 insertions, 23 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index b6f9534f47..40e811c7e0 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -8,29 +8,6 @@
* Readable Date and DateTime#inspect. #8570 [Geoff Buesing]
-* Added proper handling of arrays #8537 [hasmanyjosh]
-
- Before:
- Hash.from_xml '<images></images>'
- # => {:images => nil}
-
- Hash.from_xml '<images><image>foo.jpg</image></images>'
- # => {:images => {:image => "foo.jpg"}}
-
- Hash.from_xml '<images><image>foo.jpg</image><image>bar.jpg</image></images>'
- # => {:images => {:image => ["foo.jpg", "bar.jpg"]}}
-
- After:
- Hash.from_xml '<images type="array"></images>'
- # => {:images => []}
-
- Hash.from_xml '<images type="array"><image>foo.jpg</image></images>'
- # => {:images => ["foo.jpg"]}
-
- Hash.from_xml '<images type="array"><image>foo.jpg</image><image>bar.jpg</image></images>'
- # => {:images => ["foo.jpg", "bar.jpg"]}
-
-
* Move common DateTime calculations to Date. #8536 [Geoff Buesing]
* Added Date#change (like Time#change) [DHH]