instance method
stringify_array
Ruby on Rails 4.1.16
Since v4.1.16Signature
stringify_array(array)
No documentation comment.
Parameters
-
arrayreq
Source
# File actionpack/lib/action_dispatch/middleware/flash.rb, line 242
def stringify_array(array)
array.map do |item|
item.kind_of?(Symbol) ? item.to_s : item
end
end
Defined in actionpack/lib/action_dispatch/middleware/flash.rb line 242
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::Flash::FlashHash