Matt Tanous

Results 17 issues of Matt Tanous

This works fine: ```ruby class Family < ActiveRecord::Base belongs_to :admin, class_name: "Parent" belongs_to :center end class Parent < ActiveRecord::Base end ``` However, Bullet records this error if the association in...

stale

It looks like Rails changed how `add_constraints` works again in Rails 5.2, so in addition to the open PR for ActiveRecord 5.1 support, ActiveRecord 5.2 support will require additional significant...

I was running into a situation on a production app where we were doing a join on a subquery, and we were getting an `undefined method 'on' for Arel::Node::TableAlias` with...

Doesn't seem to matter what the jobs content is, and this happens just occasionally: ``` undefined method `[]' for nil:NilClass /srv/app/shared/bundle/ruby/2.5.0/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract/connection_pool.rb:391:in `active_connection?' /srv/app/shared/bundle/ruby/2.5.0/gems/activerecord-5.2.2/lib/active_record/connection_adapters/abstract/query_cache.rb:36:in `enable_query_cache!' /srv/app/shared/bundle/ruby/2.5.0/gems/activerecord-5.2.2/lib/active_record/query_cache.rb:30:in `block in run' /srv/app/shared/bundle/ruby/2.5.0/gems/activerecord-5.2.2/lib/active_record/query_cache.rb:30:in `each'...

`Hashie` has generally been noted as having lackluster performance, large memory overhead, and results in a few pitfalls. For instance, see https://www.schneems.com/2014/12/15/hashie-considered-harmful.html. OpenStruct objects can provide much of the same...

new feature

On current master with the following schedule: #[#], :base_min=>[#], :base_sec=>[#], :day=>[#]}, @interval=1, @week_start=:sunday, @time=2018-02-27 00:00:00 -0500, @start_time=2018-02-19 00:00:00 -0500, @uses=2>], @all_exception_rules=[], @unit=:week> I'm getting this error: ``` schedule.previous_occurrence(Date.current) *** ArgumentError...

ActiveStorage uses `signed_blob_id` parameters that are case-sensitive. At present, this is incompatible with the `route_downcaser` gem. However, the downcasing of routes in general is a useful concept. If there would...

Now that `redis-rb` has released version 5, expanding support to use this new version would be much appreciated.

Working to resolve #3478 and enable the support for private Cargo registries. I built this off of #6868, which appeared to be abandoned a while ago in an incomplete state....

L: rust:cargo

The `symbolize_names` option is confusing and out of sync with the rest of the Ruby standard library. For instance, the `Hash` class uses `symbolize_keys` as a method. It seems that...