José Valim

Results 1253 comments of José Valim

This feature is now in Ecto. Just add: def embed_as(_format), do: :dump To the Ecto type and it should work in future Ecto versions.

@RobertDober there is absolutely no rush from our side. :) I will also send a PR hopefully soon to preserve spaces inside HTML tags, so it should provide another option...

I think he meant more context at the implementation level. The code needs to know when not to extract IAL. :)

Note this PR has one issue. If A depends on B as a path dependency, both B and A are verified when running `mix dialyzer` from A. That's how Mix...

> On another note, if this requires Elixir 1.10 should we add elixir: "elixir: ">= 1.10.0" in the project key? I'm not totally clear if this is used by hex...

If the issue is the application tracer, we can have a flag that disables it too.

Hopefully one day the functionality will also be in edoc (and the `h` helper will be in Erlang). For example, we could ask `edoc` to generate the chunk for given...

@garazdawi I think we can even store the xml in the chunk because we want to convert the data in the chunk to multiple formats. For example, ansi (or man)...

`ex_doc` works with markdown right now but it doesn't care about it, the important is that we can emit HTML at some point. The chunks were designed exactly so we...

There has been discussions about using compilation tracers. With compilation tracers, you will always know if a macro expands to `def`, so you can track all definitions. But it requires...