dotdiff 2.0.2 → 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 30178eeafe6748ec2b768e6c4ccc683c1da4ff62
4
- data.tar.gz: 0c09b813bd34df6e917616c1e0a94ffe4e163cbe
3
+ metadata.gz: b02f39b117e8c2c17d6b4aef801e89d41275d87d
4
+ data.tar.gz: 9a9b9ecc0d6e210514aa551adc2a06727d9d6bf6
5
5
  SHA512:
6
- metadata.gz: 37942f613415420d4ae63edb38d0b8b7cac3a79a67a6ddf744576ec446acc01af0d1359aa29d552a4b4887038a2ea3cba2c6ac821606fcb58518465a1ab111b9
7
- data.tar.gz: 3f0561fbe81cec487e4fddd433013b9b7f9310bd380951ffbd6dece6deda5254aee33b35f02224a71d20a4a0a7192c7b9a73333825abc84fbe3bfdf478d9c750
6
+ metadata.gz: d2b4b0a9ba06188098cd616794bcb090cfd09019b8258371dda16103cf6f24d63ffc27374acfeef389225b82afe16623ca1ffb96ff154461003a894fa91b6e08
7
+ data.tar.gz: fdb81120916a27326dc3b22ae5c6b27fcf6e2fa054f07076822a6171a1b57334a97fb38b1ea40c58de47763591ac63309431d3229f671952278313dc8ff40eea
data/README.md CHANGED
@@ -12,8 +12,11 @@ different display suchas username or user specific details, but only for full pa
12
12
 
13
13
  ## Installation
14
14
 
15
+
15
16
  Add this line to your application's Gemfile:
16
17
 
18
+ This is the same for JRuby platform as well (both MRI and JRuby versions of gem is uploaded)
19
+
17
20
  ```ruby
18
21
  gem 'dotdiff'
19
22
  ```
@@ -84,6 +87,7 @@ The only difference for the element specific is passing a specific element in th
84
87
  | max_wait_time | This is similar to the Capybara#default_max_wait_time if you have a high value such as 10, as its possible that the global xpath_elements_to_hide might not always exist it will wait the full time - therefore you can drop it for the hiding and showing of the elements. In this example it would wait up 20 seconds in total 10 for hiding and 10 seconds for re-showing - that is if the element isn't even going to be present on the page. | 2 | Capybara#default_max_wait_time | No |
85
88
  | pixel_threshold | This validates the output from compare is within your specified threshold | 120 | 100 | No |
86
89
  | image_magick_options | This allows you to pass some custom options to image magick | '-fuzz 10% -metric RSME' | '-fuzz 5% -metric AE' | No |
90
+
87
91
  ## Contributing
88
92
 
89
93
  Bug reports and pull requests are welcome on GitHub at https://github.com/jnormington/dotdiff.
@@ -12,9 +12,8 @@ Gem::Specification.new do |spec|
12
12
  spec.email = ["jnormington@users.noreply.github.com"]
13
13
  spec.platform = 'java' if is_java
14
14
 
15
- spec.summary = "Preceptual diff wrapper for capybara and rspec image regression specs"
16
- spec.description = [spec.summary, "which is great for graphs and charts where checking"\
17
- "the DOM is either impossible to not worth it."].join(' ')
15
+ spec.summary = "Image regression wrapper for Capybara and RSpec using image magick supporting both MRI and JRuby versions"
16
+ spec.description = [spec.summary, "which supports snap shoting both full page and specific elements on a page where text checks isn't enough"].join(' ')
18
17
  spec.homepage = "https://github.com/jnormington/dotdiff"
19
18
  spec.license = "MIT"
20
19
 
@@ -1,3 +1,3 @@
1
1
  module DotDiff
2
- VERSION = "2.0.2"
2
+ VERSION = "2.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dotdiff
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Normington
@@ -80,9 +80,9 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '2.6'
83
- description: Preceptual diff wrapper for capybara and rspec image regression specs
84
- which is great for graphs and charts where checkingthe DOM is either impossible
85
- to not worth it.
83
+ description: Image regression wrapper for Capybara and RSpec using image magick supporting
84
+ both MRI and JRuby versions which supports snap shoting both full page and specific
85
+ elements on a page where text checks isn't enough
86
86
  email:
87
87
  - jnormington@users.noreply.github.com
88
88
  executables: []
@@ -130,5 +130,6 @@ rubyforge_project:
130
130
  rubygems_version: 2.6.12
131
131
  signing_key:
132
132
  specification_version: 4
133
- summary: Preceptual diff wrapper for capybara and rspec image regression specs
133
+ summary: Image regression wrapper for Capybara and RSpec using image magick supporting
134
+ both MRI and JRuby versions
134
135
  test_files: []