diff options
author | José Valim <jose.valim@plataformatec.com.br> | 2014-03-01 08:19:03 +0100 |
---|---|---|
committer | José Valim <jose.valim@plataformatec.com.br> | 2014-03-01 08:19:03 +0100 |
commit | f1601073de55deb78d041645e74b04c4969345d7 (patch) | |
tree | fdf88935ef294965418b37a9a9c189e401fa5c96 /actionpack | |
parent | 401787db4bc428dce88b04e343a64c6a6c3b681c (diff) | |
parent | b11ebf1d80e4fb124f0ce0448cea30988256da59 (diff) | |
download | rails-f1601073de55deb78d041645e74b04c4969345d7.tar.gz rails-f1601073de55deb78d041645e74b04c4969345d7.tar.bz2 rails-f1601073de55deb78d041645e74b04c4969345d7.zip |
Merge pull request #14240 from sferik/flat_map
Replace map.flatten(1) with flat_map
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/journey/formatter.rb | 4 | ||||
-rw-r--r-- | actionpack/lib/action_dispatch/journey/gtg/transition_table.rb | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/actionpack/lib/action_dispatch/journey/formatter.rb b/actionpack/lib/action_dispatch/journey/formatter.rb index 4410c1b5d5..57f0963731 100644 --- a/actionpack/lib/action_dispatch/journey/formatter.rb +++ b/actionpack/lib/action_dispatch/journey/formatter.rb @@ -121,9 +121,9 @@ module ActionDispatch def possibles(cache, options, depth = 0) cache.fetch(:___routes) { [] } + options.find_all { |pair| cache.key?(pair) - }.map { |pair| + }.flat_map { |pair| possibles(cache[pair], options, depth + 1) - }.flatten(1) + } end # Returns +true+ if no missing keys are present, otherwise +false+. diff --git a/actionpack/lib/action_dispatch/journey/gtg/transition_table.rb b/actionpack/lib/action_dispatch/journey/gtg/transition_table.rb index 5a79059ed6..a5b19fcf06 100644 --- a/actionpack/lib/action_dispatch/journey/gtg/transition_table.rb +++ b/actionpack/lib/action_dispatch/journey/gtg/transition_table.rb @@ -120,11 +120,11 @@ module ActionDispatch end def transitions - @string_states.map { |from, hash| + @string_states.flat_map { |from, hash| hash.map { |s, to| [from, s, to] } - }.flatten(1) + @regexp_states.map { |from, hash| + } + @regexp_states.flat_map { |from, hash| hash.map { |s, to| [from, s, to] } - }.flatten(1) + } end private |