Flowdock
method

typecast!

Importance_0
v3.1.0 - Show latest stable - 0 notes - Class: ActionView::PathSet
typecast!() 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_view/path_set.rb, line 34
    def typecast!
      each_with_index do |path, i|
        path = path.to_s if path.is_a?(Pathname)
        next unless path.is_a?(String)
        self[i] = OptimizedFileSystemResolver.new(path)
      end
    end
Register or log in to add new notes.