Pattern: Duplicate method definition
Issue: -
This rule checks for duplicated instance (or singleton) method definitions.
# bad
def duplicated
1
end
def duplicated
2
end
# bad
def duplicated
1
end
alias duplicated other_duplicated
# good
def duplicated
1
end
def other_duplicated
2
end