method
new
rails latest stable - Class:
ActionView::PathSet::Path
new(path, load = true)public
No documentation available.
# File actionpack/lib/action_view/paths.rb, line 54
def initialize(path, load = true)
raise ArgumentError, "path already is a Path class" if path.is_a?(Path)
@path = path.freeze
reload! if load
end