method

arrange_actions_by_methods

arrange_actions_by_methods(actions)
protected

No documentation available.

# File actionpack/lib/action_controller/resources.rb, line 161
        def arrange_actions_by_methods(actions)
          (actions || {}).inject({}) do |flipped_hash, (key, value)|
            (flipped_hash[value] ||= []) << key
            flipped_hash
          end
        end