Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Escaping The Tar Pit at RubyConf AU 2020

Escaping The Tar Pit at RubyConf AU 2020

Nobody wants to inherit a project that reeks but here we are: Stuck in the tar pit. How can we get out? Could we have avoided it in the first place? In this talk you will learn how to use a few, great Ruby gems that will guide you out of that sticky tar you are in.

Thanks to RubyConf AU and https://fastruby.io for sponsoring my trip to Melbourne! ❤️

Also, in case you missed my talk and want to watch it online. You can find it over here: https://youtu.be/ORb2UQ0_8zg

Ernesto Tagwerker

February 20, 2020
Tweet

More Decks by Ernesto Tagwerker

Other Decks in Programming

Transcript

  1. “Large-system programming has over the past decade been such a

    tar pit, and many great and powerful beasts have thrashed violently in it.” Fred Brooks
  2. “The fiercer the struggle, the more entangling the tar, and

    no beast is so strong or so skillful but that they ultimately sink.” Fred Brooks
  3. Tar Pit Symptoms > Projects running over budget > Taking

    forever to ship small changes > Sacrificing quality, increasing tech debt
  4. “THAT’D BE GREAT” BOSS: “IF YOU COULD COME IN ON

    THIS GREAT, LEGACY PROJECT AND MAINTAIN IT FROM NOW ON…”
  5. “THAT’D BE GREAT” CLIENT: “IF YOU COULD COME IN ON

    THIS GREAT, LEGACY PROJECT AND MAINTAIN IT FROM NOW ON…”
  6. “BECAUSE I NEED IT BY END OF DAY TODAY” CLIENT:

    “HOW LONG IS IT GOING TO TAKE?”
  7. “The degree to which a system, component, or process meets

    implicit and explicit requirements.” IEEE
  8. ISO 9126-1 Software Quality Model ✅ Reliability ✅ Usability ✅

    Efficiency ✅ Maintainability ✅ Portability
  9. ISO 9126-1 Software Quality Model ✅ Reliability ✅ Usability ✅

    Efficiency ➡ Maintainability ✅ Portability
  10. Code Coverage # spec/spec_helper.rb if ENV["COVERAGE"] == "true" require 'simplecov'

    SimpleCov.start do add_group "Models", "models" add_filter "/spec/" track_files "**/*.rb" end end
  11. Code Quality n options (flog; flay; reek; churn; RubyCritic; MetricFu;

    attractor; rubocop; fukuzatsu; turbulence; …)
  12. Complexity class Default def yay # 10.8 = a =

    eval "1+1" # 1.2 + 6.0 + if a == 2 # 1.2 + 1.2 + puts "yay" # 1.2 end end end
  13. 100 0 1 100_000 No one understands these files but

    they work. So don’t change them. Complexity Churn
  14. 100 0 1 100_000 “[…], if the code never changes,

    it's not costing us money.” Sandi Metz Complexity Churn
  15. 100 0 1 100_000 Everybody understands these files but you

    need to change them often Complexity Churn
  16. 100 0 1 100_000 Complexity Churn “Sometimes a class becomes

    so complex that refactoring seems too difficult.” Michael Feathers
  17. Are you getting into a tar pit, is it a

    dumpster fire, or have you found a project which is easy to maintain?
  18. foo.rb complexity: 10 smells: 10 smell points: 100 (10*10) bar.rb

    complexity: 10 smells: 10 smell points: 100 (10*10)
  19. foo.rb complexity: 10 smells: 10 code_coverage: 0 stink_score: 10,000 (10*10)*100

    bar.rb complexity: 10 smells: 10 code_coverage: 100 stink_score: 100 (10*10)*1
  20. foo.rb complexity: 10 smells: 10 code_coverage: 0 stink_score: 10,000 (10*10)*100

    You should write some tests for foo.rb bar.rb complexity: 10 smells: 10 code_coverage: 100 stink_score: 100 (10*10)*1
  21. Skunk $ skunk ... StinkScore Total: 13231.069999999996 Modules Analysed: 71

    StinkScore Average: 186.3530985915493 Worst StinkScore: 2401.75 (lib/rubycritic/source_control_systems/git.rb)
  22. Skunk $ skunk ... StinkScore Total: 13231.069999999996 Modules Analysed: 71

    StinkScore Average: 186.3530985915493 Worst StinkScore: 2401.75 (lib/rubycritic/source_control_systems/git.rb)
  23. RubyCritic module RubyCritic class AnalysedModule def cost smells.map(&:cost).inject(0.0, :+) +

    # From Reek (complexity / COMPLEXITY_FACTOR) # From Flog end end end
  24. Skunk module RubyCritic class AnalysedModule def stink_score return cost if

    perfect_coverage? cost * (PERFECT_COVERAGE - coverage.to_i) end end end
  25. Skunk module RubyCritic class AnalysedModule def stink_score return cost if

    perfect_coverage? cost * (PERFECT_COVERAGE - coverage.to_i) # Penalty Factor = 100% - 20% => 80 end end end
  26. Skunk $ skunk -b master Base branch (master) average stink

    score: 79.78 Feature branch (refactor/git) average stink score: 71.79
  27. Skunk $ skunk -b master Base branch (master) average stink

    score: 79.78 Feature branch (refactor/git) average stink score: 71.79 10% better