Blog
Archive for 2015
Read More
Scalling a Rails application’s response is often done by using another programming language. As we might know, Twitter has started as a Rails application, and ended up...
Read More
Exposing serialised fields – meta programming way
class SomeClass < ActiveRecord::Base
belongs_to :user
def self.serialize(attr_name, class_name = Object, exposed_fields = [])
super(attr_name, class_name)
...