module Sprockets::PathUtils
def directory?(path)
path - String file path.
Public: Like `File.directory?`.
def directory?(path) if stat = self.stat(path) stat.directory? else false end end
def directory?(path) if stat = self.stat(path) stat.directory? else false end end