Module: Blockbuster::FileHelpers
- Included in:
- Comparator
- Defined in:
- lib/blockbuster/concerns/file_helpers.rb
Overview
file helper methods
Instance Method Summary collapse
Instance Method Details
#file_digest(file) ⇒ Object
4 5 6 |
# File 'lib/blockbuster/concerns/file_helpers.rb', line 4 def file_digest(file) Digest::MD5.file(file).hexdigest end |
#tar_digest(content) ⇒ Object
8 9 10 |
# File 'lib/blockbuster/concerns/file_helpers.rb', line 8 def tar_digest(content) Digest::MD5.hexdigest(content) end |