Results 39 comments of J

@marcoroth if we can detect that we're using a getter, perhaps we can code around it? Like we could perhaps ignore the first call made to the getter and then...

I've implemented a fix for this and have opened up a PR for it at https://github.com/phayes/geoPHP/pull/119.

This is far from complete, but this will get you going: ```ruby Pry.prepend(Module.new do include Console1984::Freezeable def process_command(line, ...) Console1984.command_executor.execute(Array(line)) do super end end end) ``` That will capture the...

I am seeing this behaviour as well. This appears to occur `OptimizedUrlHelper` calls `ActionDispatch::Http::URL.url_for` directly rather than through `ActionDispatch::Routing::RouteSet#url_for`, which in turn the `generate` method that routing-filter hooks into. `OptimizedUrlHelper`...

Adding either webp or tiff support should be pretty simple unless there’s some additional functionality specific to either of those formats that require adding some more extensive code changes. I...

I can likely put some time into this soon as I have some PRs that need merging as well.

Just as a heads up, I have started on support for webp, more to come very soon, hopefully before the weekend is out.

@hkmaly and anyone else interested -- see #26 for some initial WebP support and see what you think.

These bindings were a minor reworking of the existing gd2 Ruby bindings that were written like 15 years ago, which used the old `dl` Ruby dynamic linker module, which I...

If these all work I'll just take the most performant then I suppose.