Dan Arnfield

Results 38 comments of Dan Arnfield

In my case the gems were not getting installed where they should have been (vendor/bundle/ruby/2.x.0/bundler/gems) until your patch. Maybe they were getting "installed" to the cache?

> v10, which BTW avoids creating URLs with empty params Ah, good to know. I did see one case of a legitimate URL constructed by the app with `page=` but...

This is a long shot, but do you happen to be running a multi-process server in development? I was dealing with the same issue until just now. I've been running...

I dug into this and found the problem, opened a PR.

I just ran into this myself. Weird thing is, it works in another project which is not significantly different (both are small rails 8 apps, both running brakeman 7.0.2).

I think I know why this is happening: Macs are extremely slow at enumerating files. On my linux machine, I can run `find . -type f | wc -l` in...

I went spelunking in the Rubocop code base to try to figure out why it is still fast on macOS and found this: [target_finder.rb#L62](https://github.com/rubocop/rubocop/blob/f44b15c0ccbd60a82d5bad820662cbc532917e1a/lib/rubocop/target_finder.rb#L62) ```ruby # Search for files recursively...

I tested that PR and it works! `brakeman --skip-files storage` is significantly faster. However, I did discover another issue: the `match_path` method does not appear to work for patterns ending...

The latest commit works for me, though I noticed that now `storage/` works but not `storage`. But since the docs use a trailing `/` for directories I don't see a...

This bug is also triggered by renaming or deleting entities in NR. Another fix I've found is: 1. Delete the old (original) entities using the recorder.purge_entities action in HA dev...