ActiveRecord Class Example
1 2 class Task < ActiveRecord::Base 3 belongs_to :user 4 belongs_to :location 5 belongs_to :project 6 end .
12731 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 2 class Task < ActiveRecord::Base 3 belongs_to :user 4 belongs_to :location 5 belongs_to :project 6 end .