Elixir modules offer some valuable insight into designing Ruby classes. Ruby classes combine data and behavior in a typically object-oriented way: data: instances of the class hold state in instance variables behavior: methods on the class alter state. Elixir modules also comb...