Calculates the checksum for this string. Any change to this string will result in a different checksum.
@return [String] The checksum for this string
@api private
# File lib/nanoc/base/core_ext/string.rb, line 17 def checksum digest = Digest::SHA1.new digest.update(self) digest.hexdigest end
Generated with the Darkfish Rdoc Generator 2.