imatcher 0.1.5 → 0.1.6

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
  SHA1:
3
- metadata.gz: 5f234308f500c473c29fb6b561359da7319bed81
4
- data.tar.gz: 9947982123bb47d552d8a4cfc4feaee12e329d45
3
+ metadata.gz: 9b732a5e76b22bb7714bb9512bec50a08089fccc
4
+ data.tar.gz: d34d75b437e24c191579310f666b7e6ebc2e8a9f
5
5
  SHA512:
6
- metadata.gz: bff12bb1e1a8c4ebd8910d15b17779de57bf34a228cd0d3a418e983ea09999dedf68e4e63eed24ea2756a9d9e92985d0553811e9b626d6186387701bcf7c1797
7
- data.tar.gz: 5017b4d57e174c21e7582bc5ba9ef12619fdcc20d5bc4cea753d56d88b69de4952cbef5232726007cea23a6d4206843ff82c46ab0bed2f95335209f97378c191
6
+ metadata.gz: 46736e8879c8e68a89aca66911176994f757a1fbb9e5268084cc78441de5984512982addaf951a82f56ac839f4f883b69a42d4b5234ba22c5235f2693134ea7a
7
+ data.tar.gz: c1ce2be3a848a6ca138f2899dba757868c9c43f3115d815f2c15348abac1e17636198fd19244d74b849adb2e3dc73d466b00de4b9f4576f792a069e551e2462f
data/.travis.yml CHANGED
@@ -7,3 +7,8 @@ rvm:
7
7
 
8
8
  notifications:
9
9
  email: false
10
+
11
+ before_install:
12
+ - gem install bundler
13
+
14
+ script: bundle exec rake
data/Gemfile CHANGED
@@ -1,6 +1,13 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gemspec
3
+ gem "rake", "~> 10.0"
4
+ gem "rspec", "~> 3.0"
5
+
6
+ if RUBY_PLATFORM =~ /java/
7
+ gem "chunky_png", "~> 1.3.5"
8
+ else
9
+ gem "oily_png", "~> 1.2"
10
+ end
4
11
 
5
12
  gem 'pry-byebug' if RUBY_VERSION >= "2.0.0" && RUBY_PLATFORM != 'java'
6
13
  local_gemfile = 'Gemfile.local'
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![Build Status](https://travis-ci.org/teachbase/imatcher.svg?branch=master)](https://travis-ci.org/teachbase/imatcher)
1
+ [![Gem Version](https://badge.fury.io/rb/imatcher.svg)](https://rubygems.org/gems/imatcher) [![Build Status](https://travis-ci.org/teachbase/imatcher.svg?branch=master)](https://travis-ci.org/teachbase/imatcher)
2
2
 
3
3
  # Imatcher
4
4
 
@@ -88,21 +88,21 @@ res = Imatcher::Matcher.new(options).compare(path_1, path_2)
88
88
 
89
89
  ```
90
90
 
91
- ## Excluding area
91
+ ## Excluding rectangle
92
92
 
93
93
  <img src="https://raw.githubusercontent.com/teachbase/imatcher/master/spec/fixtures/a.png" width="300" />
94
94
  <img src="https://raw.githubusercontent.com/teachbase/imatcher/master/spec/fixtures/a1.png" width="300" />
95
95
 
96
- You can exclude area from comparing by passing `:exclude_area` to `compare`.
96
+ You can exclude rectangle from comparing by passing `:exclude_rect` to `compare`.
97
97
  E.g., if `path_1` and `path_2` contain images above
98
98
  ```ruby
99
- Imatcher.compare(path_1, path_2, exclude_area: [200, 150, 275, 200]).match? # => true
99
+ Imatcher.compare(path_1, path_2, exclude_rect: [200, 150, 275, 200]).match? # => true
100
100
  ```
101
101
  `[200, 150, 275, 200]` is array of two vertices of rectangle -- (200, 150) is left-top vertex and (275, 200) is right-bottom.
102
102
 
103
- ## Including area
103
+ ## Including rectangle
104
104
 
105
- You can set bounds of comparing by passing `:include_area` to `compare` with array similar to previous example
105
+ You can set bounds of comparing by passing `:include_rect` to `compare` with array similar to previous example
106
106
 
107
107
  ## Contributing
108
108
 
data/imatcher.gemspec CHANGED
@@ -14,11 +14,8 @@ Gem::Specification.new do |spec|
14
14
  spec.files = `git ls-files`.split($/)
15
15
  spec.require_paths = ["lib"]
16
16
 
17
- if RUBY_PLATFORM =~ /java/
18
- spec.add_dependency "chunky_png", "~> 1.3.5"
19
- else
20
- spec.add_dependency "oily_png", "~> 1.2"
21
- end
17
+ spec.add_dependency "chunky_png", "~> 1.3.5"
18
+ spec.add_dependency "oily_png", "~> 1.2" if spec.platform == "ruby"
22
19
 
23
20
  spec.add_development_dependency "simplecov", ">= 0.3.8"
24
21
  spec.add_development_dependency "rake", "~> 10.0"
@@ -1,3 +1,3 @@
1
1
  module Imatcher # :nodoc:
2
- VERSION = "0.1.5".freeze
2
+ VERSION = "0.1.6".freeze
3
3
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: imatcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - palkan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-10 00:00:00.000000000 Z
11
+ date: 2017-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: chunky_png
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 1.3.5
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 1.3.5
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: oily_png
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -136,9 +150,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
136
150
  version: '0'
137
151
  requirements: []
138
152
  rubyforge_project:
139
- rubygems_version: 2.5.1
153
+ rubygems_version: 2.6.4
140
154
  signing_key:
141
155
  specification_version: 4
142
156
  summary: Image comparison lib
143
157
  test_files: []
144
- has_rdoc: