Aleksei Matiushkin
Aleksei Matiushkin
Hi @egidijusz, thanks for having your hands dirty with this, I appreciate it. I am strongly against _renaming_ because it breaks backward compatibility. But in general, you are absolutely right....
It is described in the docs, there is also an example in tests/support/structs.ex You should pass the respective keyword parameter to `use Estructura` and implement coerce_foo functions. El mié., 6...
I agree with @sos4nt that the font should not attempt to interpret the characters or imply a meaning. I personally would be confused to see `≠` is ruby code, though...
Hi @niccolox, the library itself is not tied to any phx/ecto version. It might be used as a business process handler in contexts, but it also might be used in...
Well, technically one might use [`Finitomata.Persistency.Persistable`](https://hexdocs.pm/finitomata/Finitomata.Persistency.Persistable.html) implementation in combination with [`Finitomata.Persistency`](https://hexdocs.pm/finitomata/Finitomata.Persistency.html) to simplify the loading/storing FSM with a state into/from _any_ storage, including, but not limited to DB. This is...
I will provide a pull request for above within one week.
Thanks. Let me first provide this pull request, it’ll include my name as well. This would be a perfect motivation to complete it sooner :)
@dimitarvp I want to clarify the multiple tag occurrence. ```elixir %{tag: "12", limit: 1..9999, children: [%{tag: "16", limit: 1..1}, %{tag: "21", limit: 1..1}]} ``` How the above controls the children...
@dimitarvp I think I get it. So, basically what we need is the ability to validate: - **list validation** with rules applied to each list element; - **nested validation** with...
@dimitarvp Yeah, `9999`, of course, it was a copy-paste leftover. > How's your library in terms of pinpointing and reporting exact places in the input where validation fails? It’s uh...