Eduardo Gurgel
Eduardo Gurgel
It would be nice to generate the `index.html` on `priv/` using somehow README.md or something like this.
We are depending on `:cover` right now. We should use `:cover` just if available.
Changes: - Use `gproc_dist` on gproc to registry properties on processes globally; - Use renode to reconnect nodes when disconnections happen. Missing: - [ ] Add at least 1 integration...
It closes #27 This PR will make Poxa accept a new parameter as part of the configuration: `apps: [{"app_id2", "app_key2", "secret2"}]` The `apps` parameter will need to map nicely to...
Right now there are some `Logger.info` calls around but no real thought around what should or should not be logged. What should we log? This will be also a good...
https://github.com/pusher/pusher-socket-protocol/pull/2/files
render with ```liquid {% assign featured_product = all_products["product_handle"] %} {% render "product" with featured_product as product %} ```
``` Render result was different! Input: ######################## this should print {%- break -%} this should not print ######################## code: liquid_output == solid_output left: "########################\n\nthis should print\n" right: "########################\n\nthis should print"...
input.liquid ```liquid {% increment my_number %} {% increment my_number %} {% increment my_number %} {{ my_number }} ``` input.json ```json { "my_number": 4 } ``` ``` Render result was different!...
We want to limit how deep a liquid template can get to just like the Liquid gem does: https://github.com/Shopify/liquid/blob/efef03d944157db323f1aed5e19861bf66fe256f/test/integration/security_test.rb#L82-L88