troessner/reek

View on GitHub
samples/smelly_source/smelly.rb

Summary

Maintainability
A
0 mins
Test Coverage
# Smelly class
class Smelly
  # This will reek of UncommunicativeMethodName
  def x
    y = 10 # This will reek of UncommunicativeVariableName
  end
end