All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
If an unused block argument is intended, it should be prefixed with an underscore.
define_method(:foo) do |bar| puts :baz end
define_method(:foo) do |_bar| puts :baz end