Lars Kanis
Lars Kanis
Sorry I can't reproduce this segfault - probably because I don't have MacOS Catalina. Did it change with Big Sur?
Sorry for my late answer! It is possible to native build fxruby on Windows. You have to provide libfox in order to build it. We do that on Appveyor and...
Sorry for my late answer! But yes, I'm open to add such aliases.
`create` is a bit tricky in FXRuby: It is called while the initial `FXApp.create` call, but subsequently allocated Widgets needs to be created explicitly. In addition to this there's currently...
Is this issue still present? Do you have a reproducible test case?
See https://gist.github.com/4433842
This is fixed [upstream](https://github.com/oneclick/rubyinstaller/issues/400), but you probably have to update the download link.
@ashmaroli I did a lot of benchmarks when tuning [ruby-pg](https://github.com/ged/ruby-pg). One outcome was, that allocation counts can be a good indicator for performance improvements, but don't have to. In particular...
@ashmaroli After a bit of benchmarking [here](https://gist.github.com/larskanis/c1ef84c3e058e819786f5fd20bc7c207) and [here](https://gist.github.com/larskanis/d95455fa71deb4cc6b03005cb9c505b0) I noticed that I was wrong in [my comment above](https://github.com/sparklemotion/nokogiri/issues/1986#issuecomment-582287199). Reusing strings from `st_table` is actually somewhat faster that allocation of...
I migrated ruby-pg from `Data_Wrap_Struct` to `TypedData_Wrap_Struct` a.k. typed-data recently here: https://github.com/ged/ruby-pg/pull/349 This changed all T_DATA objects to typed-data, implements the `GC.compact` callbacks and removed all `rb_gc_mark` calls. I did...