Skip to content

Instantly share code, notes, and snippets.

@amro
Created February 4, 2012 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amro/1739282 to your computer and use it in GitHub Desktop.
Save amro/1739282 to your computer and use it in GitHub Desktop.
u = User.find(id)
s = Section.find(section_id)
t = Todo.new do |d|
d.name = "Finish me"
d.due_by = 1.day.ago
end
u.todos << t
s.todos << t
t.save
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment