allows for any class that includes this to use a block to initialize
variables instead of assigning each one seperately
Example:
instead of…
s = Status.new s.foo = ‘thing’ s.bar = ‘another
thing‘
you can …
Status.new do |s|
s.foo = 'thing'
s.bar = 'another thing'
end