Flowdock
method

stringify_array

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: ActionDispatch::Flash::FlashHash
stringify_array(array) protected

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/middleware/flash.rb, line 284
      def stringify_array(array)
        array.map do |item|
          item.kind_of?(Symbol) ? item.to_s : item
        end
      end
Register or log in to add new notes.