Ruby on Rails is very smart framework and it let us to handle with many things in very easy way.
There is no exception when we think about optimistic and pessimistic locking. I will show you how to handle it very fast.
Read moreRuby on Rails is very smart framework and it let us to handle with many things in very easy way.
There is no exception when we think about optimistic and pessimistic locking. I will show you how to handle it very fast.
Read moreSometimes raising error is not enough. As probably you know, you can use command like this:
raise ActiveModel::StrictValidationFailed, "Some message"
This command will return 500 error on your website + it will log into your console the name of the error and message you passed in.
But it won't give you any context. This is big problem if for example you call API and your response is bad.
You want to know, what is happening there directly.
Fortunately there is some solution for it.
Read more