This workflow applies to ANY project and ensures high-quality, reviewable code that passes all project-specific quality checks.
At the start of EVERY session:
I used these elements and specified these styles to make this thing happen. I chose to use white text color because you can't see it if it's black. (duh). (When you write this make your actual description more meaningful...)
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| class Phrase | |
| attr_reader :expression | |
| def initialize(expression) | |
| @expression = expression | |
| end | |
| def word_count | |
| words.each_with_object(Hash.new(0)) do |word, count| | |
| count[word] += 1 |