Pattern: Use of deprecated HashWithIndifferentAccess
Issue: -
Identifies top-level HashWithIndifferentAccess
.
This has been soft-deprecated since Rails 5.1.
# bad
HashWithIndifferentAccess.new(foo: 'bar')
# good
ActiveSupport::HashWithIndifferentAccess.new(foo: 'bar')