Skip to content

Instantly share code, notes, and snippets.

@giridhar
Created May 21, 2010 19:41
Show Gist options
  • Save giridhar/409318 to your computer and use it in GitHub Desktop.
Save giridhar/409318 to your computer and use it in GitHub Desktop.
class User < ActiveRecord::Base
has_many :posts
end
class Post < ActiveRecord::Base
belongs_to :user
delegate :author , :to => user
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment