0.0
No commit activity in last 3 years
No release in over 3 years
This gem can check whether HTMLs are optically the same or not by ignoring specified html elements by parsing input as HTML.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
>= 0

Runtime

~> 2.0
~> 1.5
 Project Readme

OpticalDiff

This gem can check whether HTMLs are optically the same or not by ignoring specified html elements by parsing input as HTML.

Installation

Add this line to your application's Gemfile:

gem 'optical_diff'

And then execute:

$ bundle

Or install it yourself as:

$ gem install optical_diff

Usage

Ignore specified html element by css selector or xpath

html1 = "<html><body>text</body></html>"
html2 = "<html><body>text<p class = 'random_text'>qwerty</p></body></html>"
diff = OpticalDiff.diff(html1, html2, :ignore => %w(p.random_text'))
diff.changed? #=> false

Replace text

html1 = "<html><body><a href='/link?abcde'>text</a></body></html>"
html2 = "<html><body><a href='/link?fghij'>text</a></body></html>"
diff = OpticalDiff.diff(html1, html2, :replace => [[/\?.+?'/, "'"]])
diff.changed? #=> false

:replace is always processed before :ignore

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request