hash-that-tree 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +3 -3
- data/hash-that-tree.gemspec +1 -2
- metadata +1 -1
data/README.md
CHANGED
|
@@ -18,11 +18,11 @@ Or install it yourself as:
|
|
|
18
18
|
$ gem install hash-that-tree
|
|
19
19
|
|
|
20
20
|
## Usage
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
# to view help
|
|
23
22
|
hashthattree help
|
|
24
23
|
|
|
25
|
-
|
|
24
|
+
# run the app on the test files
|
|
25
|
+
hashthattree compare spec/testfiles/1 spec/testfiles/2
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
## Creating Documentation
|
data/hash-that-tree.gemspec
CHANGED
|
@@ -4,13 +4,12 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |gem|
|
|
6
6
|
gem.name = "hash-that-tree"
|
|
7
|
-
gem.version = "0.0.
|
|
7
|
+
gem.version = "0.0.7"
|
|
8
8
|
gem.authors = ["John Ryan"]
|
|
9
9
|
gem.email = ["555john@gmail.com"]
|
|
10
10
|
gem.description = "Command line app that compares the MD5 hashes of the files in different folders"
|
|
11
11
|
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"
|
|
12
12
|
gem.homepage = "http://github.com/jnyryan/hash-that-tree"
|
|
13
|
-
gem.has_rdoc = true
|
|
14
13
|
gem.files = `git ls-files`.split($/)
|
|
15
14
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
16
15
|
gem.executable = 'hashthattree'
|