CJPoll / predicator_elixir

Predicator Evaluator in elixir

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Predicator

predicator_elixir is a predicate evaluator for compiled rules from the predicator ruby gem

Installation

The package can be installed by:

  1. Adding to your list of dependencies in mix.exs:
def deps do
  [{:predicator, "~> 0.7"}]
end

or if you want to use the ecto types for predicator you can add the predicator_ecto lib.

def deps do
  [
    {:predicator, "~> 0.7"},
    {:predicator_ecto, ">= 0.0.0"},
  ]
end

Using

Currently has working Evaluator for Predicator instructions & limited lexing and parsing

About

Predicator Evaluator in elixir

License:MIT License


Languages

Language:Elixir 93.9%Language:Erlang 6.1%