├── .github └── workflows │ ├── rubocop-todo-corrector.yml │ └── test.yml ├── .gitignore ├── .rubocop.yml ├── .rubocop_todo.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── rspec-json_matcher.rb └── rspec │ ├── json_matcher.rb │ └── json_matcher │ ├── abstract_comparer.rb │ ├── abstract_matcher.rb │ ├── exact_comparer.rb │ ├── exact_matcher.rb │ ├── fuzzy_comparer.rb │ ├── fuzzy_matcher.rb │ └── version.rb ├── rspec-json_matcher.gemspec └── spec ├── rspec └── json_matcher_spec.rb └── spec_helper.rb /.github/workflows/rubocop-todo-corrector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/.github/workflows/rubocop-todo-corrector.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/rspec-json_matcher.rb: -------------------------------------------------------------------------------- 1 | require 'rspec/json_matcher' 2 | -------------------------------------------------------------------------------- /lib/rspec/json_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/lib/rspec/json_matcher.rb -------------------------------------------------------------------------------- /lib/rspec/json_matcher/abstract_comparer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/lib/rspec/json_matcher/abstract_comparer.rb -------------------------------------------------------------------------------- /lib/rspec/json_matcher/abstract_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/lib/rspec/json_matcher/abstract_matcher.rb -------------------------------------------------------------------------------- /lib/rspec/json_matcher/exact_comparer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/lib/rspec/json_matcher/exact_comparer.rb -------------------------------------------------------------------------------- /lib/rspec/json_matcher/exact_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/lib/rspec/json_matcher/exact_matcher.rb -------------------------------------------------------------------------------- /lib/rspec/json_matcher/fuzzy_comparer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/lib/rspec/json_matcher/fuzzy_comparer.rb -------------------------------------------------------------------------------- /lib/rspec/json_matcher/fuzzy_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/lib/rspec/json_matcher/fuzzy_matcher.rb -------------------------------------------------------------------------------- /lib/rspec/json_matcher/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/lib/rspec/json_matcher/version.rb -------------------------------------------------------------------------------- /rspec-json_matcher.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/rspec-json_matcher.gemspec -------------------------------------------------------------------------------- /spec/rspec/json_matcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/spec/rspec/json_matcher_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/rspec-json_matcher/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------