# File lib/sprockets/processed_asset.rb, line 77 def initialize(pathname, mtime, digest) pathname = Pathname.new(pathname) unless pathname.is_a?(Pathname) mtime = Time.parse(mtime) if mtime.is_a?(String) super end
# File lib/sprockets/processed_asset.rb, line 83 def eql?(other) other.is_a?(DependencyFile) && pathname.eql?(other.pathname) && mtime.eql?(other.mtime) && digest.eql?(other.digest) end
# File lib/sprockets/processed_asset.rb, line 90 def hash pathname.to_s.hash end