sjyama / vending_ruby

0 stars 0 forks source link

Vending depositメソッドの改善 #20

Open yoshitokamizato opened 4 years ago

yoshitokamizato commented 4 years ago

こちらのメソッドで depo.deposited_money で戻り値を返し、それを再度calculateメソッドの引数で受け取っているのは効率が悪い

https://github.com/sjyama/vending_ruby/blob/9a82985d11cf133ad0fbe16601d07c2c21e8c3b8/vending.rb#L9

depo.deposited_money の中身をインスタンス変数に格納し、そのインスタンス変数をcalculateメソッドから利用した方が効率がいい

sjyama commented 4 years ago

17

上記プルリクにて対応を実施。 (こちらの対応は#21 と併せて実施済み)