├── .document ├── .github └── workflows │ └── ruby.yml ├── .gitignore ├── .rspec ├── .yardopts ├── ChangeLog.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── gemspec.yml ├── lib └── nokogiri │ ├── diff.rb │ └── diff │ ├── version.rb │ ├── xml.rb │ └── xml │ ├── document.rb │ └── node.rb ├── nokogiri-diff.gemspec └── spec ├── diff_spec.rb └── spec_helper.rb /.document: -------------------------------------------------------------------------------- 1 | - 2 | ChangeLog.md 3 | LICENSE.txt 4 | -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /Gemfile.lock 2 | /coverage 3 | /doc 4 | /pkg 5 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour --format documentation 2 | -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/.yardopts -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/Rakefile -------------------------------------------------------------------------------- /gemspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/gemspec.yml -------------------------------------------------------------------------------- /lib/nokogiri/diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/lib/nokogiri/diff.rb -------------------------------------------------------------------------------- /lib/nokogiri/diff/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/lib/nokogiri/diff/version.rb -------------------------------------------------------------------------------- /lib/nokogiri/diff/xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/lib/nokogiri/diff/xml.rb -------------------------------------------------------------------------------- /lib/nokogiri/diff/xml/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/lib/nokogiri/diff/xml/document.rb -------------------------------------------------------------------------------- /lib/nokogiri/diff/xml/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/lib/nokogiri/diff/xml/node.rb -------------------------------------------------------------------------------- /nokogiri-diff.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/nokogiri-diff.gemspec -------------------------------------------------------------------------------- /spec/diff_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/spec/diff_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postmodern/nokogiri-diff/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------