find_dupe_images 0.4.2 → 0.4.3
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.
- checksums.yaml +4 -4
- data/LICENSE +13 -0
- data/find_dupe_images.gemspec +1 -0
- data/lib/find_dupe_images/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 244d368e31c3a063d4b620da51666edd1fb57ebe
|
|
4
|
+
data.tar.gz: 0b1ba57d6bb6e3210f4d57dce898055b661e25c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e99a84f3fcf65073f8cb406cee5c08bf3aaec7680ad40265fe73c22ca7a5fcccd9a41d7954ca1f60f3d11011cb0f68c4617a4c640a2814e658871cec25d0122a
|
|
7
|
+
data.tar.gz: 35857765416113ed63e487ee4bb69df8628403f1d6bb2d40e32f3648c29d13713c80d5f044be638b52efb37473b46509ab77228e23a11949609c1525aae1ab89
|
data/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright 2015 Andy Wenk
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
data/find_dupe_images.gemspec
CHANGED
|
@@ -8,6 +8,7 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = FindDupeImages::VERSION
|
|
9
9
|
spec.authors = ["Andy Wenk"]
|
|
10
10
|
spec.email = ["andy@nms.de"]
|
|
11
|
+
spec.license = 'Apache 2.0'
|
|
11
12
|
|
|
12
13
|
spec.summary = %q{Find duplicate images in a directory structure}
|
|
13
14
|
spec.description = %q{Find duplicate images in a directory structure}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: find_dupe_images
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andy Wenk
|
|
@@ -110,6 +110,7 @@ files:
|
|
|
110
110
|
- ".travis.yml"
|
|
111
111
|
- CODE_OF_CONDUCT.md
|
|
112
112
|
- Gemfile
|
|
113
|
+
- LICENSE
|
|
113
114
|
- README.md
|
|
114
115
|
- Rakefile
|
|
115
116
|
- bin/console
|
|
@@ -127,7 +128,8 @@ files:
|
|
|
127
128
|
- lib/find_dupe_images/serializer.rb
|
|
128
129
|
- lib/find_dupe_images/version.rb
|
|
129
130
|
homepage: https://github.com/andywenk/find_dupe_images
|
|
130
|
-
licenses:
|
|
131
|
+
licenses:
|
|
132
|
+
- Apache 2.0
|
|
131
133
|
metadata: {}
|
|
132
134
|
post_install_message:
|
|
133
135
|
rdoc_options: []
|