Brian Dillard

Results 8 comments of Brian Dillard

I have a sample app, but unfortunately it's private. I could give you read-only access if it would help. I'm not using a subtree. You're right that, by default, acts_as_list...

By the way, here's my hacky code: ``` def sortable(options = {}) options.reverse_merge! :sorting_attribute => :position, :parent_method => :parent, :children_method => :children, :roots_method => :roots, :tree => false, :max_levels =>...

FWIW, a teammate spelunked into your code and found this solution to allow vetted exceptions to Good Migrations rules for a single migration: ``` def up GoodMigrations::PatchesAutoloader.instance.unpatch! # do some...

https://www.ruby-lang.org/en/ https://rubyonrails.org/

Simiilarly, when command-clicking a filename with trailing a `:` in iTerm 2 on Mac, Zed correctly opens the file but fails to jump to the line. This makes interactive debugging...

There's a bug filed about this in Rails, but it's closed as "Not Planned": https://github.com/rails/rails/issues/53532 Seems like maybe Ransack is using private Arel APIs and the fix would be to...