SAVE AN OBJECT SKIPPING CALLBACKS IN RAILS 3 APPLICATION

In a Ruby on Rails application, we need to skip validation as well as callbacks while saving the object.
In Rails 3.x, commonly used method to skip callbacks is ActiveSupport’s skip_callback method, but this method could cause problems as its not thread-safe. This post talks about alternative way to achieve the purpose.

Technology
Read more

Ruby Developer – as a Career Option

Looking at current employment trends, you can easily figure out the increasing demand for Ruby on Rails developers. Ruby on Rails is becoming a popular language and offers glorious career options for experienced as well as entry-level Ruby on Rails developers.

Technology
Read more

Testing in Ruby on Rails

Optimum use of programming basics like ‘Don’t Repeat Yourself’ and ‘Conventions over Configuration’ offers very clear and structured code in RoR and makes testing and debugging process quite hazard free. RoR provides an in-built test framework that keeps the test database independent from development and production database and allows developers to do fear free testing.

Technology
Read more