Leo Arnold

Results 39 comments of Leo Arnold

There is actually a long history of effort to eliminate the usage of `multi_json` in `json-schema`, but sadly it looks like efforts have stalled: #339

@Jesterovskiy This might be solved when using `multi_json` v1.13.0, see https://github.com/intridea/multi_json/pull/183

Got same on Kubuntu 17.10. Seems to duplicate #71 **but** installing `libgnome2-0` sadly didn't fix it.

The relevant file here might be `libgnome-2.so` which comes with the package `libgnome2-dev`, yet that did not work for me either.

URL handling is registered correctly: ``` $ xdg-mime query default x-scheme-handler/dash-plugin zeal.desktop ``` and ``` $ xdg-open dash-plugin://test ``` will launch Zeal as desired, so this is definitely somewhere in...

@gdelmas Would it be a viable option to drop usage of the Desktop API and go native instead like this? https://stackoverflow.com/a/18004334

It turns out that there is way more leaking than just the return value of the block: ```ruby # frozen_string_literal: true require 'bundler/inline' gemfile(true) do source 'https://rubygems.org' gem 'concurrent-ruby', '1.1.10'...

Maybe this "leaking" of the `Array` objects is intentional, i.e. keeping a pool of sub-threads in a thread-local variable which is then garbage collected when the parent thread is garbage...

Maybe this "leak" is intentional, i.e. keeping a pool of sub-threads in a thread-local variable which is then garbage collected when the parent thread is garbage collected :thinking: