rails--rails/railties/lib
Santiago Pastorino a0613ad8a9 Revert "Use flat_map { } instead of map {}.flatten"
This reverts commit abf8de8551.
We should take a deeper look to those cases flat_map doesn't do deep
flattening.

irb(main):002:0> [[[1,3], [1,2]]].map{|i| i}.flatten
=> [1, 3, 1, 2]
irb(main):003:0> [[[1,3], [1,2]]].flat_map{|i| i}
=> [[1, 3], [1, 2]]
2012-10-05 12:07:16 -03:00
..
rails Revert "Use flat_map { } instead of map {}.flatten" 2012-10-05 12:07:16 -03:00
rails.rb Make Rails.public_path return a Pathname 2012-10-02 20:44:02 -04:00