small projects and katas in ruby with rspec
examples at https://repl.it/@chrisjkellett/ruby-playground
counts the frequency of words in a given string and returns a hash of the results
word_counter('hello hello world') # {"hello" => 2, "world" => 1}