hash-that-tree 0.0.9 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. data/.gitignore +19 -19
  2. data/Gemfile.lock +17 -17
  3. data/README.md +69 -66
  4. data/bin/hashthattree +1 -1
  5. data/hash-that-tree.gemspec +22 -21
  6. data/lib/cli.rb +18 -20
  7. data/lib/compare.rb +120 -81
  8. data/spec/testfiles/1/file3.txt +1 -1
  9. data/spec/testfiles/1/file4.txt +1 -1
  10. data/spec/testfiles/2/file3.txt +2 -2
  11. data/spec/testfiles/2/file4.txt +2 -2
  12. metadata +7 -76
  13. data/spec/doc/created.rid +0 -11
  14. data/spec/doc/images/brick.png +0 -0
  15. data/spec/doc/images/brick_link.png +0 -0
  16. data/spec/doc/images/bug.png +0 -0
  17. data/spec/doc/images/bullet_black.png +0 -0
  18. data/spec/doc/images/bullet_toggle_minus.png +0 -0
  19. data/spec/doc/images/bullet_toggle_plus.png +0 -0
  20. data/spec/doc/images/date.png +0 -0
  21. data/spec/doc/images/find.png +0 -0
  22. data/spec/doc/images/loadingAnimation.gif +0 -0
  23. data/spec/doc/images/macFFBgHack.png +0 -0
  24. data/spec/doc/images/package.png +0 -0
  25. data/spec/doc/images/page_green.png +0 -0
  26. data/spec/doc/images/page_white_text.png +0 -0
  27. data/spec/doc/images/page_white_width.png +0 -0
  28. data/spec/doc/images/plugin.png +0 -0
  29. data/spec/doc/images/ruby.png +0 -0
  30. data/spec/doc/images/tag_green.png +0 -0
  31. data/spec/doc/images/wrench.png +0 -0
  32. data/spec/doc/images/wrench_orange.png +0 -0
  33. data/spec/doc/images/zoom.png +0 -0
  34. data/spec/doc/index.html +0 -72
  35. data/spec/doc/js/darkfish.js +0 -116
  36. data/spec/doc/js/jquery.js +0 -32
  37. data/spec/doc/js/quicksearch.js +0 -114
  38. data/spec/doc/js/thickbox-compressed.js +0 -10
  39. data/spec/doc/rdoc.css +0 -763
  40. data/spec/doc/testfiles/1/file1_txt.html +0 -100
  41. data/spec/doc/testfiles/1/file2_txt.html +0 -100
  42. data/spec/doc/testfiles/1/file3_txt.html +0 -102
  43. data/spec/doc/testfiles/1/file4_txt.html +0 -102
  44. data/spec/doc/testfiles/2/file1_txt.html +0 -100
  45. data/spec/doc/testfiles/2/file2_txt.html +0 -100
  46. data/spec/doc/testfiles/2/file3_txt.html +0 -102
  47. data/spec/doc/testfiles/2/file4_txt.html +0 -102
  48. data/spec/doc/testfiles/2/fileA_txt.html +0 -100
  49. data/spec/doc/testfiles/2/fileB_txt.html +0 -100
data/.gitignore CHANGED
@@ -1,19 +1,19 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- coverage
6
- InstalledFiles
7
- lib/bundler/man
8
- pkg
9
- rdoc
10
- spec/reports
11
- test/tmp
12
- test/version_tmp
13
- tmp
14
- doc
15
- # YARD artifacts
16
- .yardoc
17
- _yardoc
18
- .project
19
- *~
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ coverage
6
+ InstalledFiles
7
+ lib/bundler/man
8
+ pkg
9
+ rdoc
10
+ spec/reports
11
+ test/tmp
12
+ test/version_tmp
13
+ tmp
14
+ doc
15
+ # YARD artifacts
16
+ .yardoc
17
+ _yardoc
18
+ .project
19
+ *~
data/Gemfile.lock CHANGED
@@ -1,17 +1,17 @@
1
- PATH
2
- remote: .
3
- specs:
4
- hash-that-tree (0.0.8)
5
- thor
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- thor (0.16.0)
11
-
12
- PLATFORMS
13
- ruby
14
- x86-mingw32
15
-
16
- DEPENDENCIES
17
- hash-that-tree!
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ hash-that-tree (0.0.9)
5
+ thor
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ thor (0.16.0)
11
+
12
+ PLATFORMS
13
+ ruby
14
+ x86-mingw32
15
+
16
+ DEPENDENCIES
17
+ hash-that-tree!
data/README.md CHANGED
@@ -1,66 +1,69 @@
1
- #hash-that-tree
2
- A ruby command line app that compares the MD5 hashes of the files in different folders
3
-
4
- It allows the user to enter folder locations, then iterats through the files, creating and comparing the MD5 hashes of the files with the same name
5
-
6
- ## Installation
7
-
8
- Add this line to your application's Gemfile:
9
-
10
- gem 'hash-that-tree'
11
-
12
- And then execute:
13
-
14
- $ bundle
15
-
16
- Or install it yourself as:
17
-
18
- $ gem install hash-that-tree
19
-
20
- ## Usage
21
- # to view help
22
- hashthattree help
23
-
24
- # run the app on the test files
25
- hashthattree compare spec/testfiles/1 spec/testfiles/2
26
-
27
-
28
- ## Creating Documentation
29
- Run the following command to generate the documantation
30
-
31
- rdoc --exclude spec/testfiles
32
-
33
- ## Create a gem
34
-
35
- Build and Test Locally
36
- -gem build hash-that-tree.gemspec
37
- -gem install hash-that-tree-X.X.X # where X.X.X is the version of the compiled gemspec
38
- -hashthattree
39
-
40
- Build and deploy to rubygems.org
41
- -gem update --system
42
- -gem build hash-that-tree.gemspec
43
- -gem push hash-that-tree-0.0.1.gem # where X.X.X is the version of the compiled gemspec
44
-
45
- ## Contributing
46
-
47
- 1. Fork it
48
- 2. Create your feature branch (`git checkout -b my-new-feature`)
49
- 3. Commit your changes (`git commit -am 'Add some feature'`)
50
- 4. Push to the branch (`git push origin my-new-feature`)
51
- 5. Create new Pull Request
52
-
53
- ##References
54
-
55
- Looking into bundling with https://github.com/radar/guides/blob/master/gem-development.md
56
- http://whatisthor.com/
57
-
58
- ## TODO
59
-
60
- I have a few items to do in upcoming releases
61
- * Add Unit Tests
62
- * Allow to be used as an API as well as a Command Line Tool
63
- * Allow multiple folders to be specified
64
- * Add folder recursion option
65
- * Add SHA1
66
-
1
+ #hash-that-tree
2
+ A ruby command line app that compares the MD5 hashes of the files in different folders
3
+
4
+ It allows the user to enter folder locations, then iterats through the files, creating and comparing the MD5 hashes of the files with the same name
5
+
6
+ ## Installation
7
+
8
+ Add this line to your application's Gemfile:
9
+
10
+ gem 'hash-that-tree'
11
+
12
+ And then execute:
13
+
14
+ $ bundle
15
+
16
+ Or install it yourself as:
17
+
18
+ $ gem install hash-that-tree
19
+
20
+ ## Usage
21
+ # to view help
22
+ hashthattree help
23
+
24
+ # run the app on the test files
25
+ hashthattree compare ./spec/testfiles/1 ./spec/testfiles/2
26
+ hashthattree compare ./spec/testfiles/1 ./spec/testfiles/2 csv
27
+ hashthattree compare ./spec/testfiles/1 ./spec/testfiles/2 html
28
+ hashthattree compare ./spec/testfiles/1 ./spec/testfiles/2 json
29
+
30
+
31
+ ## Creating Documentation
32
+ Run the following command to generate the documantation
33
+
34
+ rdoc --exclude spec/testfiles
35
+
36
+ ## Create a gem
37
+
38
+ Build and Test Locally
39
+ -gem build hash-that-tree.gemspec
40
+ -gem install hash-that-tree-X.X.X # where X.X.X is the version of the compiled gemspec
41
+ -hashthattree
42
+
43
+ Build and deploy to rubygems.org
44
+ -gem update --system
45
+ -gem build hash-that-tree.gemspec
46
+ -gem push hash-that-tree-0.0.1.gem # where X.X.X is the version of the compiled gemspec
47
+
48
+ ## Contributing
49
+
50
+ 1. Fork it
51
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
52
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
53
+ 4. Push to the branch (`git push origin my-new-feature`)
54
+ 5. Create new Pull Request
55
+
56
+ ##References
57
+
58
+ Looking into bundling with https://github.com/radar/guides/blob/master/gem-development.md
59
+ http://whatisthor.com/
60
+
61
+ ## TODO
62
+
63
+ I have a few items to do in upcoming releases
64
+ * Add Unit Tests
65
+ * Allow to be used as an API as well as a Command Line Tool
66
+ * Allow multiple folders to be specified
67
+ * Add folder recursion option
68
+ * Add SHA1
69
+
data/bin/hashthattree CHANGED
@@ -1 +1 @@
1
- require_relative '../lib/cli'
1
+ require_relative '../lib/cli'
@@ -1,21 +1,22 @@
1
- # -*- encoding: utf-8 -*-
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
-
5
- Gem::Specification.new do |gem|
6
- gem.name = "hash-that-tree"
7
- gem.version = "0.0.9"
8
- gem.authors = ["John Ryan"]
9
- gem.email = ["555john@gmail.com"]
10
- gem.description = "Command line app that compares the MD5 hashes of the files in different folders"
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
- gem.homepage = "http://github.com/jnyryan/hash-that-tree"
13
- gem.extra_rdoc_files = [ "LICENSE.txt", "README.md" ]
14
- gem.files = `git ls-files`.split($/)
15
- #gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.file(f) }
16
- gem.executable = 'hashthattree'
17
- gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
- gem.require_paths = ["lib"]
19
-
20
- gem.add_dependency "thor"
21
- end
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = "hash-that-tree"
7
+ gem.version = "0.1.0"
8
+ gem.authors = ["John Ryan"]
9
+ gem.email = ["555john@gmail.com"]
10
+ gem.description = "Command line app that compares the MD5 hashes of the files in different folders"
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
+ gem.homepage = "http://github.com/jnyryan/hash-that-tree"
13
+ gem.extra_rdoc_files = [ "LICENSE.txt", "README.md" ]
14
+ gem.files = `git ls-files`.split($/)
15
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
16
+ gem.executable = 'hashthattree'
17
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
+ gem.require_paths = ["lib"]
19
+ gem.rdoc_options << '--title' << 'Rake -- Ruby Make' << '--main' << 'README' << '--line-numbers'
20
+
21
+ gem.add_dependency "thor"
22
+ end
data/lib/cli.rb CHANGED
@@ -1,21 +1,19 @@
1
- require 'thor'
2
- require_relative 'compare'
3
-
4
- # Command Line Program that takes two directories and creates a MD5 hash for every file contained within.<br/>
5
- # It then builds a result set that compares files with the same name and allows for them to be outputted
6
- # as a csv string
7
- module HashThatTree
8
- class CLI < Thor
9
- option :recurse
10
-
11
- desc "compare FOLDER1 FOLDER2", "Create a hash of all files in the folders, compare them and output the results in CSV format"
12
- def compare(folder1, folder2)
13
- htt = CompareMD5.new(folder1, folder2)
14
- htt.compare
15
- htt.display_results
16
- end
17
- end
18
-
19
- CLI.start(ARGV)
20
-
1
+ require 'thor'
2
+ require_relative 'compare'
3
+
4
+ # Command Line Program that takes two directories and creates a MD5 hash for every file contained within.<br/>
5
+ # It then builds a result set that compares files with the same name and allows for them to be outputted
6
+ # as a csv string
7
+ module HashThatTree
8
+ #This class controls the Command Line Interface
9
+ class CLI < Thor
10
+ #Create a hash of all files in the folders, compare them and output the results in CSV format
11
+ desc "compare FOLDER1 FOLDER2", "Create a hash of all files in the folders, compare them and output the results in the specified format"
12
+ def compare(folder1, folder2, output=:csv)
13
+ htt = CompareMD5.new(folder1, folder2, output)
14
+ htt.compare
15
+ htt.display_results
16
+ end
17
+ end
18
+ CLI.start(ARGV)
21
19
  end
data/lib/compare.rb CHANGED
@@ -1,81 +1,120 @@
1
- require 'digest/md5'
2
-
3
- # Author:: John Ryan (mailto:555john@gmail.com)
4
- # Copyright:: Copyright (c) 2012 John Ryan
5
- # License:: Distributes under the same terms as Ruby
6
-
7
- module HashThatTree
8
-
9
- # This class accepts two folders and provides methods to iterate
10
- # through them creating a hash of each file within and can display
11
- # the results for analysis
12
-
13
- class CompareMD5
14
- attr_accessor :folder1, :folder2
15
-
16
- #initialize the class with the folders to be compared
17
- def initialize(folder1, folder2)
18
- @folder1 = folder1
19
- @folder2 = folder2
20
- @filehash = Hash.new
21
- validate
22
- end
23
-
24
-
25
- # Validates the input ensuring the arguments are both valid folders
26
- def validate
27
- if(folder1==nil) || (folder1=="") || !Dir.exists?(folder1)
28
- puts "a valid folder path is required as argument 1"
29
- exit
30
- end
31
-
32
- if(folder2==nil) || (folder2=="") || !Dir.exists?(folder2)
33
- puts "a valid folder path is required as argument 2"
34
- exit
35
- end
36
-
37
- end
38
-
39
- # Iterates through the folders and creates a FileHashResults object containing the
40
- # results of the comparisson
41
- def compare
42
-
43
- Dir.foreach(@folder1) do |item|
44
- next if item == '.' or item == '..'
45
- the_hash = Digest::MD5.hexdigest(File.read(File.join(@folder1, item)))
46
- item = item.downcase
47
- filedata = FileHashResults.new(item, the_hash, nil)
48
- @filehash[item] = filedata
49
- end
50
-
51
- Dir.foreach(@folder2) do |item|
52
- next if item == '.' or item == '..'
53
- the_hash = Digest::MD5.hexdigest(File.read(File.join(@folder2, item)))
54
- item = item.downcase
55
- if(@filehash[item]==nil)
56
- filedata = FileHashResults.new(item, nil, the_hash)
57
- @filehash[item] = filedata
58
- next
59
- end
60
- @filehash[item.downcase].file_hash2 = the_hash
61
- end
62
- end
63
-
64
- #Dumps the contents of the FileHashResults object in csv form to standard out
65
- def display_results
66
- puts "FileName,#{@folder1},#{@folder2},Are Equal"
67
- @filehash.each{ |key, value| puts "#{value.file_name},#{value.file_hash1},#{value.file_hash2}, #{value.file_hash1==value.file_hash2}" }
68
- end
69
-
70
- end
71
-
72
- #Container for the results of the file comparisson
73
- class FileHashResults
74
- attr_accessor :file_name, :file_hash1, :file_hash2
75
- def initialize(file_name, file_hash1, file_hash2)
76
- @file_name = file_name
77
- @file_hash1 = file_hash1
78
- @file_hash2 = file_hash2
79
- end
80
- end
81
- end
1
+ require 'digest/md5'
2
+
3
+ # Author:: John Ryan (mailto:555john@gmail.com)
4
+ # Copyright:: Copyright (c) 2012 John Ryan
5
+ # License:: Distributes under the same terms as Ruby
6
+
7
+ module HashThatTree
8
+
9
+ # This class accepts two folders and provides methods to iterate
10
+ # through them creating a hash of each file within and can display
11
+ # the results for analysis
12
+ class CompareMD5
13
+ attr_accessor :folder1 #path to folder containing files to hash
14
+ attr_accessor :folder2 #path to folder containing files to hash to be compared to folder1
15
+ attr_accessor :format #the format to output the results to. csv, html or json
16
+
17
+ #initialize the class with the folders to be compared
18
+ def initialize(folder1, folder2, format)
19
+ @folder1 = folder1
20
+ @folder2 = folder2
21
+ @format = format
22
+ @filehash = Hash.new
23
+ validate
24
+ end
25
+
26
+
27
+ # Validates the input ensuring the arguments are both valid folders
28
+ def validate
29
+ if(folder1==nil) || (folder1=="") || !Dir.exists?(folder1)
30
+ puts "a valid folder path is required as argument 1"
31
+ exit
32
+ end
33
+
34
+ if(folder2==nil) || (folder2=="") || !Dir.exists?(folder2)
35
+ puts "a valid folder path is required as argument 2"
36
+ exit
37
+ end
38
+
39
+ end
40
+
41
+ # Iterates through the folders and creates a FileHashResults object containing the
42
+ # results of the comparisson
43
+ def compare
44
+
45
+ Dir.foreach(@folder1) do |item|
46
+ begin
47
+ next if item == '.' or item == '..'
48
+ fullfilename = File.expand_path(@folder1, item)
49
+ the_hash = Digest::MD5.hexdigest(File.read(File.join(File.expand_path(@folder1), item)))
50
+ item = item.downcase
51
+ filedata = FileHashResults.new(item, the_hash, nil)
52
+ @filehash[item] = filedata
53
+ rescue
54
+ #puts "Skipped:#{item.inspect}"
55
+ end
56
+ end
57
+
58
+ Dir.foreach(@folder2) do |item|
59
+ begin
60
+ next if item == '.' or item == '..'
61
+ the_hash = Digest::MD5.hexdigest(File.read(File.join(@folder2, item)))
62
+ item = item.downcase
63
+ if(@filehash[item]==nil)
64
+ filedata = FileHashResults.new(item, nil, the_hash)
65
+ @filehash[item] = filedata
66
+ next
67
+ end
68
+ @filehash[item.downcase].file_hash2 = the_hash
69
+ rescue
70
+ #puts "Skipped:#{item.inspect}"
71
+ end
72
+ end
73
+ end
74
+
75
+ #print the contents of the FileHashResults object standard out in the format specified. Default is csv
76
+ def display_results()
77
+ case @format
78
+ when "csv"
79
+ display_results_csv
80
+ when "html"
81
+ display_results_html
82
+ when "json"
83
+ display_results_json
84
+ else
85
+ display_results_csv
86
+ end
87
+ end
88
+
89
+ #Prints the results to standard out in the csv format specified.
90
+ def display_results_csv
91
+ puts "FileName,#{@folder1},#{@folder2},Are Equal"
92
+ @filehash.each{ |key, value| puts "#{value.file_name},#{value.file_hash1},#{value.file_hash2}, #{value.file_hash1==value.file_hash2}" }
93
+ end
94
+
95
+ #Prints the results to standard out in the csv format specified.
96
+ def display_results_html
97
+ output ="<!DOCTYPE html><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><title></title></head><body>"
98
+ output.concat("<table><thead><tr><td>FileName</td></tr><tr><td>#{@folder1}</td></tr><tr><td>#{@folder2}</td></tr><tr><td>Equal</td></tr></thead>")
99
+ @filehash.each{ |key, value| output.concat("<tbody><tr><td>#{value.file_name}</td></tr><tr><td>#{value.file_hash1}</td></tr><tr><td>#{value.file_hash2}</td></tr><tr><td>#{value.file_hash1==value.file_hash2}</td></tr>")}
100
+ output.concat("</tbody></table></body></html>")
101
+ puts output
102
+ end
103
+
104
+ #Prints the results to standard out in the csv format specified.
105
+ def display_results_json
106
+ puts @filehash
107
+ end
108
+
109
+ end
110
+
111
+ #Container for the results of the file comparisson
112
+ class FileHashResults
113
+ attr_accessor :file_name, :file_hash1, :file_hash2
114
+ def initialize(file_name, file_hash1, file_hash2)
115
+ @file_name = file_name
116
+ @file_hash1 = file_hash1
117
+ @file_hash2 = file_hash2
118
+ end
119
+ end
120
+ end
@@ -1 +1 @@
1
- hello
1
+ hello
@@ -1 +1 @@
1
- hello
1
+ hello
@@ -1,2 +1,2 @@
1
- hello
2
- Hello
1
+ hello
2
+ Hello
@@ -1,2 +1,2 @@
1
- hello
2
- goodbye
1
+ hello
2
+ goodbye
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hash-that-tree
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -48,43 +48,6 @@ files:
48
48
  - hash-that-tree.gemspec
49
49
  - lib/cli.rb
50
50
  - lib/compare.rb
51
- - spec/doc/created.rid
52
- - spec/doc/images/brick.png
53
- - spec/doc/images/brick_link.png
54
- - spec/doc/images/bug.png
55
- - spec/doc/images/bullet_black.png
56
- - spec/doc/images/bullet_toggle_minus.png
57
- - spec/doc/images/bullet_toggle_plus.png
58
- - spec/doc/images/date.png
59
- - spec/doc/images/find.png
60
- - spec/doc/images/loadingAnimation.gif
61
- - spec/doc/images/macFFBgHack.png
62
- - spec/doc/images/package.png
63
- - spec/doc/images/page_green.png
64
- - spec/doc/images/page_white_text.png
65
- - spec/doc/images/page_white_width.png
66
- - spec/doc/images/plugin.png
67
- - spec/doc/images/ruby.png
68
- - spec/doc/images/tag_green.png
69
- - spec/doc/images/wrench.png
70
- - spec/doc/images/wrench_orange.png
71
- - spec/doc/images/zoom.png
72
- - spec/doc/index.html
73
- - spec/doc/js/darkfish.js
74
- - spec/doc/js/jquery.js
75
- - spec/doc/js/quicksearch.js
76
- - spec/doc/js/thickbox-compressed.js
77
- - spec/doc/rdoc.css
78
- - spec/doc/testfiles/1/file1_txt.html
79
- - spec/doc/testfiles/1/file2_txt.html
80
- - spec/doc/testfiles/1/file3_txt.html
81
- - spec/doc/testfiles/1/file4_txt.html
82
- - spec/doc/testfiles/2/file1_txt.html
83
- - spec/doc/testfiles/2/file2_txt.html
84
- - spec/doc/testfiles/2/file3_txt.html
85
- - spec/doc/testfiles/2/file4_txt.html
86
- - spec/doc/testfiles/2/fileA_txt.html
87
- - spec/doc/testfiles/2/fileB_txt.html
88
51
  - spec/testfiles/1/file1.txt
89
52
  - spec/testfiles/1/file2.txt
90
53
  - spec/testfiles/1/file3.txt
@@ -98,7 +61,12 @@ files:
98
61
  homepage: http://github.com/jnyryan/hash-that-tree
99
62
  licenses: []
100
63
  post_install_message:
101
- rdoc_options: []
64
+ rdoc_options:
65
+ - --title
66
+ - Rake -- Ruby Make
67
+ - --main
68
+ - README
69
+ - --line-numbers
102
70
  require_paths:
103
71
  - lib
104
72
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -121,43 +89,6 @@ specification_version: 3
121
89
  summary: Allows the user to enter folder locations iterating through the files, creating
122
90
  and comparing the MD5 hashes of the files with the same name
123
91
  test_files:
124
- - spec/doc/created.rid
125
- - spec/doc/images/brick.png
126
- - spec/doc/images/brick_link.png
127
- - spec/doc/images/bug.png
128
- - spec/doc/images/bullet_black.png
129
- - spec/doc/images/bullet_toggle_minus.png
130
- - spec/doc/images/bullet_toggle_plus.png
131
- - spec/doc/images/date.png
132
- - spec/doc/images/find.png
133
- - spec/doc/images/loadingAnimation.gif
134
- - spec/doc/images/macFFBgHack.png
135
- - spec/doc/images/package.png
136
- - spec/doc/images/page_green.png
137
- - spec/doc/images/page_white_text.png
138
- - spec/doc/images/page_white_width.png
139
- - spec/doc/images/plugin.png
140
- - spec/doc/images/ruby.png
141
- - spec/doc/images/tag_green.png
142
- - spec/doc/images/wrench.png
143
- - spec/doc/images/wrench_orange.png
144
- - spec/doc/images/zoom.png
145
- - spec/doc/index.html
146
- - spec/doc/js/darkfish.js
147
- - spec/doc/js/jquery.js
148
- - spec/doc/js/quicksearch.js
149
- - spec/doc/js/thickbox-compressed.js
150
- - spec/doc/rdoc.css
151
- - spec/doc/testfiles/1/file1_txt.html
152
- - spec/doc/testfiles/1/file2_txt.html
153
- - spec/doc/testfiles/1/file3_txt.html
154
- - spec/doc/testfiles/1/file4_txt.html
155
- - spec/doc/testfiles/2/file1_txt.html
156
- - spec/doc/testfiles/2/file2_txt.html
157
- - spec/doc/testfiles/2/file3_txt.html
158
- - spec/doc/testfiles/2/file4_txt.html
159
- - spec/doc/testfiles/2/fileA_txt.html
160
- - spec/doc/testfiles/2/fileB_txt.html
161
92
  - spec/testfiles/1/file1.txt
162
93
  - spec/testfiles/1/file2.txt
163
94
  - spec/testfiles/1/file3.txt
data/spec/doc/created.rid DELETED
@@ -1,11 +0,0 @@
1
- Mon, 05 Nov 2012 10:44:16 +0000
2
- ./testfiles/2/file3.txt Mon, 05 Nov 2012 10:07:10 +0000
3
- ./testfiles/2/fileA.txt Mon, 05 Nov 2012 10:07:28 +0000
4
- ./testfiles/2/file1.txt Mon, 05 Nov 2012 10:05:23 +0000
5
- ./testfiles/2/file2.txt Mon, 05 Nov 2012 10:05:23 +0000
6
- ./testfiles/2/file4.txt Mon, 05 Nov 2012 10:07:22 +0000
7
- ./testfiles/2/fileB.txt Mon, 05 Nov 2012 10:07:28 +0000
8
- ./testfiles/1/file3.txt Mon, 05 Nov 2012 10:06:38 +0000
9
- ./testfiles/1/file1.txt Mon, 05 Nov 2012 10:05:23 +0000
10
- ./testfiles/1/file2.txt Mon, 05 Nov 2012 10:05:23 +0000
11
- ./testfiles/1/file4.txt Mon, 05 Nov 2012 10:06:44 +0000
Binary file
Binary file
Binary file
Binary file
Binary file