Pattern: Use of method_missing
without super
Issue: -
This rule checks for the presence of method_missing
without falling back on super
.
#bad
def method_missing(name, *args)
# ...
end
#good
def method_missing(name, *args)
# ...
super
end