Sha256: 5debb707236a13f1c8f810cc7f4e034c69faa209ec56668e7a893ce888969446
Contents?: true
Size: 957 Bytes
Versions: 1
Compression:
Stored size: 957 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |gem| gem.name = "hash-that-tree" gem.version = "0.0.6" gem.authors = ["John Ryan"] gem.email = ["555john@gmail.com"] gem.description = "Command line app that compares the MD5 hashes of the files in different folders" gem.summary = "Allows the user to enter folder locations iterating through the files, creating and comparing the MD5 hashes of the files with the same name" gem.homepage = "http://github.com/jnyryan/hash-that-tree" gem.has_rdoc = true gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.executable = 'hashthattree' gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_dependency "thor" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hash-that-tree-0.0.6 | hash-that-tree.gemspec |