carbonComputer

Results 2 issues of carbonComputer

We're seeing a false positive when a transitive association is created via a model update. ```rb form1 = Form.create! recipient1 = Recipient.create first_name: 'bob', last_name: 'seger' form_request1 = FormRequest.create! form:...

We were trying to reproduce another issue and came across this. Bullet complains about eager loading when we're not doing any. ```rb def self.all_first_names all.map do |form| form.current_form_request.recipient.first_name end end...