Sometimes it makes sense to treat errors as part of an application’s “valid” flow of events. Meaning, expected errors should not necessarily make your code go crazy when random errors are raised. With that in mind, I created a way to implement some kind of “Result Object” by rescuing StandardError instances and handling these errors…
Tag: ruby on rails
Code
My RoR Primer
• 1 Comment
They say learning never stops. I couldn’t agree more. Coincidentally, my boss thinks this way as well so he advised me to read on Python and/or Ruby on Rails. My officemate suggested this e-book called Learn Ruby on Rails by Daniel Kehoe. Heh. The tutorial is VERY straight-forward. The author tells you a little something,…