by root | Apr 18, 2017 | Development, Ember.js
In Ember when you call destroyRecord on the model. In the network layer, Rest Api Method delete is invoked and your model’s id is passed in your params, I believe everyone knows this stuff. Let’s dig deeper, what happens after you call the object method...
by root | Apr 12, 2017 | Testing
The first rule of any technology used in a business is that automation applied to an efficient operation will magnify the efficiency. The second is that automation applied to an inefficient operation will magnify the inefficiency. – Bill Gates Target Audience:...
by root | Apr 3, 2017 | Code quality, Design, Development, Ruby on Rails
Let’s start with a problem every Ruby on Rails developer faces, handling ‘nil’ value – a tedious task. NoMethodError: undefined method `[]’ for nil:NilClassy 4 spaces But there is a well-known design pattern to handle ‘nil’ value for Ruby in the more...