Skip to content

Instantly share code, notes, and snippets.

@jaidetree
Created August 14, 2011 20:40
Show Gist options
  • Save jaidetree/1145283 to your computer and use it in GitHub Desktop.
Save jaidetree/1145283 to your computer and use it in GitHub Desktop.
undefined method `products' for class `News'
class News < ActiveRecord::Base
alias_method :products_original, :products
serialize :products
belongs_to :user
def products
self.products_original
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment