A simple TDD exercise implementing a string-based calculator in Ruby.
bundle install
rspecadd("") # => 0
add("1") # => 1
add("1,2") # => 3
add("1\n2,3") # => 6
add("//;\n1;2") # => 3
add("1,-2,-3") # => raises "negative numbers not allowed -2,-3"