module Sprinkle::Package::Rendering::Helpers
Helper methods can be called from inside your package and verification code
Public Instance Methods
md5(s)
click to toggle source
return the md5 of a string (as a hex string)
# File lib/sprinkle/package/rendering.rb, line 32 def md5(s) Digest::MD5.hexdigest(s) end