image_compare 1.0.3 → 1.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: efc745c05f8c87808311a102dc55c92e030de6ce85a6512aed95161a817258ce
4
- data.tar.gz: a243eda35bc9edf3313a8d34c7ad71ae2a066f3553faada189a58ea9db04c1e6
3
+ metadata.gz: a4f15aaf75201eeea7e42796e91f00bb059b9bce5390b85d8f61d3596a94f1c4
4
+ data.tar.gz: 4cede23770aa3d38035403aeed400d0cafb764dbf78ac1215a44510537371891
5
5
  SHA512:
6
- metadata.gz: 6009fd283629fc28bc28e5ed4a4e74dcf39946e23d16dd0bb03a35ca98fb069f8a5a3279d5b46cd3373550d80cccc7a5fda0c360277062a092c220ba4415827e
7
- data.tar.gz: 3ea374f5b4c3e184ee34f9c0ff3aa36c8a400e3923bafa34bd90ca66b79c2da080f606bf31fb31d717496bf045f091eba9d6a7df96eb0283517587615f019233
6
+ metadata.gz: de19b90cf7387caea0f222c63f9dc132cf8a184f1578954853601bd440b9de0c75da094e1b3c1130eee1739a1cce318a394f0f2649fa16da1f7389461ba89212
7
+ data.tar.gz: 812d70bad6990ba71a2a58be872525349a452fa254ec5d75ad8f90558c9af97709681272547c815c79ae9e2fce790cdec102c3ada8bbd465789302b6eb6dd0a7
data/CHANGELOG.md CHANGED
@@ -4,6 +4,9 @@
4
4
  - v1.0.0: Add Color mode to generate "normal" diff images ([@gsguma][], [@cristianofmc][])
5
5
  - v1.0.1: Fix all code smells and integration tests ([@gsguma][])
6
6
  - v1.0.2: Fix gem documentation uri ([@gsguma][])
7
+ - v1.0.3: Fix documentation ([@gsguma][])
8
+ - v1.0.4: Fix gem documentation images ([@gsguma][])
9
+ - v1.0.5: Fix gem documentation ([@gsguma][])
7
10
 
8
11
  [@gsguma]: https://github.com/gsguma
9
12
  [@cristianofmc]: https://github.com/cristianofmc
data/README.md CHANGED
@@ -1,6 +1,3 @@
1
- [![Gem Version](https://badge.fury.io/rb/image_compare.svg)](https://rubygems.org/gems/image_compare)
2
- [![Build](https://github.com/instantink/image_compare/workflows/Build/badge.svg)](https://github.com/instantink/image_compare/actions)
3
-
4
1
  # ImageCompare
5
2
 
6
3
  Compare PNG images in pure Ruby (uses [ChunkyPNG](https://github.com/wvanbergen/chunky_png)) using different algorithms.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ImageCompare
4
- VERSION = "1.0.3"
4
+ VERSION = "1.0.5"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: image_compare
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - cristianofmc
@@ -15,44 +15,50 @@ dependencies:
15
15
  name: chunky_png
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ">="
18
+ - - "~>"
19
19
  - !ruby/object:Gem::Version
20
- version: '0'
20
+ version: '1.4'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ">="
25
+ - - "~>"
26
26
  - !ruby/object:Gem::Version
27
- version: '0'
27
+ version: '1.4'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: rake
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - ">="
32
+ - - "~>"
33
33
  - !ruby/object:Gem::Version
34
34
  version: '13.0'
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: 13.0.6
35
38
  type: :development
36
39
  prerelease: false
37
40
  version_requirements: !ruby/object:Gem::Requirement
38
41
  requirements:
39
- - - ">="
42
+ - - "~>"
40
43
  - !ruby/object:Gem::Version
41
44
  version: '13.0'
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 13.0.6
42
48
  - !ruby/object:Gem::Dependency
43
49
  name: rspec
44
50
  requirement: !ruby/object:Gem::Requirement
45
51
  requirements:
46
- - - ">="
52
+ - - "~>"
47
53
  - !ruby/object:Gem::Version
48
- version: '3.9'
54
+ version: '3.12'
49
55
  type: :development
50
56
  prerelease: false
51
57
  version_requirements: !ruby/object:Gem::Requirement
52
58
  requirements:
53
- - - ">="
59
+ - - "~>"
54
60
  - !ruby/object:Gem::Version
55
- version: '3.9'
61
+ version: '3.12'
56
62
  description: Image comparison lib built on top of ChunkyPNG
57
63
  email:
58
64
  - cristiano.fmc@hotmail.com
@@ -85,7 +91,7 @@ licenses:
85
91
  metadata:
86
92
  bug_tracker_uri: https://github.com/instantink/image_compare/issues
87
93
  changelog_uri: https://github.com/instantink/image_compare/blob/master/CHANGELOG.md
88
- documentation_uri: https://www.rubydoc.info/gems/image_compare/1.0.3
94
+ documentation_uri: https://www.rubydoc.info/gems/image_compare/1.0.5
89
95
  homepage_uri: https://github.com/instantink/image_compare
90
96
  source_code_uri: https://github.com/instantink/image_compare
91
97
  post_install_message: