module Sprockets::PathUtils
def stat(path)
path - String file or directory path
Public: Like `File.stat`.
def stat(path) if File.exist?(path) File.stat(path.to_s) else nil end end
def stat(path) if File.exist?(path) File.stat(path.to_s) else nil end end