Skip to content
This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
/ chewy-diff Public archive

Analyze diff changes through the AST representation

License

Notifications You must be signed in to change notification settings

jonatas/chewy-diff

Repository files navigation

Chewy::Diff

Chewy diff allows you to verify changes in indices:

Installation

Add this line to your application's Gemfile:

gem 'chewy-diff'

And then execute:

$ bundle

Or install it yourself as:

$ gem install chewy-diff

Usage

Use two files as stream and check the difference in the input:

index_before = <<~RUBY
  class CitiesIndex < Chewy::Index
    define_type City do
      field :name, value: -> { name.strip }
      field :popularity
    end
  end
RUBY

index_after_change = <<~RUBY
  class CitiesIndex < Chewy::Index
    define_type City do
      field :name, value: -> { name.upcase }
      field :popularity
    end
  end
RUBY

Chewy::Diff.changes(index_before, index_after) # => [:-, "City[:name]", :+, "City[:name]"]

It supports define_type with nested witchcraft!, field, and field_with_crutch macros.

Also support simple settings verification.

index_before = <<~RUBY
  class CitiesIndex < Chewy::Index
    define_type City do
      field :name
      field :state
      field :latitude
      field :longitude
    end

    define_type Location do
      field :name
      witchcraft!
    end
  end
RUBY

index_after = <<~RUBY
  class CityIndex < Chewy::Index
    settings analysis: {
      analyzer: {
        sorted: { tokenizer: 'keyword', filter: %w[lowercase icu_folding] },
      }
    }

    define_type City do
      field :name
      field :state
      field :location
    end

    define_type Location do
      field :latitude
      field :longitude
    end
  end
RUBY

Chewy::Diff.changes(index_before, index_after)
# => [:+, "CityIndex#settings",
#     :-, "City[:latitude, :longitude]",
#     :+, "City[:location]",
#     :-, "Location[:name, :witchcraft!]",
#     :+, "Location[:latitude, :longitude]"]

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/chewy-diff. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

About

Analyze diff changes through the AST representation

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published