Ask HN: Help me refactor this code please (Ruby)
It's basically a vending machine simulation, I want to refactor it into two classes, a model (VendingMachine) and a Controller. I'm not sure what else to do. Please help.
https://gist.github.com/anonymous/a978dcd30383f3e618e5
6 comments
[ 3.2 ms ] story [ 25.2 ms ] threadI'm also not very happy with #menu being this large in LoC. What would you guys recommend?
I would also think about renaming either your refund method or your refund variable. It gets a little confusing.
You should also think about the fact that your refund method's case statement doesn't have a default. That means if someone doesn't put in either "y" or "n", you're screwed. Same situation with menu. You should always code for the unhappy path, meaning that you should think through for when someone decides to screw with your program.
In your menu case statement, I don't understand why you can't just do this:
case input when 1 name = "Coffee" price = @items[:coffee] ... #end of case statement
vend(name, price).
That'll DRY up your code at least a little bit.
https://gist.github.com/fbdf89c0117c3e1452cf
https://gist.github.com/anonymous/41c829f53777c4cdd41c