<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -70,7 +70,7 @@
 
 * Added TimeZone #=~, to support matching zones by regex in time_zone_select. #195 [Ernie Miller]
 
-* Added Array#second through Array#tenth as aliases for Array#[1] through Array#[9] [DHH]
+* Added Array#second through Array#fifth as aliases for Array#[1] through Array#[4] + Array#forty_two as alias for Array[41] [DHH]
 
 * Added test/do declaration style testing to ActiveSupport::TestCase [DHH via Jay Fields]
 </diff>
      <filename>activesupport/CHANGELOG</filename>
    </modified>
    <modified>
      <diff>@@ -43,29 +43,9 @@ module ActiveSupport #:nodoc:
           self[4]
         end
 
-        # Equal to &lt;tt&gt;self[5]&lt;/tt&gt;.
-        def sixth
-          self[5]
-        end
-
-        # Equal to &lt;tt&gt;self[6]&lt;/tt&gt;.
-        def seventh
-          self[6]
-        end
-
-        # Equal to &lt;tt&gt;self[7]&lt;/tt&gt;.
-        def eighth
-          self[7]
-        end
-
-        # Equal to &lt;tt&gt;self[8]&lt;/tt&gt;.
-        def ninth
-          self[8]
-        end
-
-        # Equal to &lt;tt&gt;self[9]&lt;/tt&gt;.
-        def tenth
-          self[9]
+        # Equal to &lt;tt&gt;self[41]&lt;/tt&gt;. Also known as accessing &quot;the reddit&quot;.
+        def forty_two
+          self[41]
         end
       end
     end</diff>
      <filename>activesupport/lib/active_support/core_ext/array/access.rb</filename>
    </modified>
    <modified>
      <diff>@@ -15,17 +15,13 @@ class ArrayExtAccessTests &lt; Test::Unit::TestCase
   end
   
   def test_second_through_tenth
-    array = (1..10).to_a
+    array = (1..42).to_a
     
     assert_equal array[1], array.second
     assert_equal array[2], array.third
     assert_equal array[3], array.fourth
     assert_equal array[4], array.fifth
-    assert_equal array[5], array.sixth
-    assert_equal array[6], array.seventh
-    assert_equal array[7], array.eighth
-    assert_equal array[8], array.ninth
-    assert_equal array[9], array.tenth
+    assert_equal array[41], array.fourty_two
   end
 end
 </diff>
      <filename>activesupport/test/core_ext/array_ext_test.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>1d4554d766dbf8391689d91b4b88766757051c68</id>
    </parent>
  </parents>
  <author>
    <name>David Heinemeier Hansson</name>
    <login>dhh</login>
    <email>david@loudthinking.com</email>
  </author>
  <url>http://github.com/rails/rails/commit/e50530ca3ab5db53ebc74314c54b62b91b932389</url>
  <id>e50530ca3ab5db53ebc74314c54b62b91b932389</id>
  <committed-date>2008-11-21T01:00:22-08:00</committed-date>
  <authored-date>2008-11-21T00:06:46-08:00</authored-date>
  <message>Reduced the number of literal aliases to the range that has actually seen personal use. With the massive savings in overhead, I was able to fit Array#forty_two</message>
  <tree>9c7c2425229d7f3130e94f52ff36f57f7f79c185</tree>
  <committer>
    <name>David Heinemeier Hansson</name>
    <login>dhh</login>
    <email>david@loudthinking.com</email>
  </committer>
</commit>
