Tiago Teixeira
Tiago Teixeira
I'm also available to test the feature or help maintain it.
I've come across the problem in my organization, is there plans to introduce this feature? @Workman Is your fork public?
Sharing here in case someone has the same issue: Since we don't use ActionView forms and to avoid the issue in the app, we opted to monkey-patch the gem in...
This is not fixed in ruby 3.3.5 Here is a way to visualize the issue: ```ruby class Foo def self.baz(a, b:, **c) end end method = Foo.method(:baz) hash = {...
`Process.warmup` does not guarantee that objects will be moved during compaction. The bug is caused when an object that is used as a key in a hash is moved, so...
I've created a fork that uses restricted dependencies, you can use it by adding the following to your Gemfile: ```ruby gem "handcuffs", github: "https://github.com/tiagotex/handcuffs.git" ```
The code above is broken 😄 This version worked for me: ```ruby require "benchmark/ips" require "trailblazer/developer/trace/snapshot" Snapshot = Trailblazer::Developer::Trace::Snapshot inspect_only_flow_options = { before_snapshooter: Snapshot::Deprecated.method(:default_input_data_collector), after_snapshooter: Snapshot::Deprecated.method(:default_output_data_collector), } snapshot_flow_options = {...
Run this on an operation, this is quite an improvement if the numbers are to be believed 😅 ``` Warming up -------------------------------------- inspect-only 30.000 i/100ms snapshot 135.745B i/100ms Calculating -------------------------------------...