module Rickshaw::MD5

Public Class Methods

hash(file_path) click to toggle source
# File lib/rickshaw.rb, line 14
def self.hash(file_path)
  hash = Digest::MD5.new
  Rickshaw::Helper.hash_file(hash, file_path)
end