Skip to content

Instantly share code, notes, and snippets.

@jacqui
Created December 10, 2009 18:34
Show Gist options
  • Save jacqui/253548 to your computer and use it in GitHub Desktop.
Save jacqui/253548 to your computer and use it in GitHub Desktop.
>> project.forms.size
# => 1
>> f = project.forms.build(:name => "foo", :headline => "bar")
# => #<Form name: "foo", slug: nil, thanks: nil, section: nil, nyt_wrapper: true, intro: nil, custom_css: nil, created_at: nil, submission_email: nil, image_count: 0, project_id: 4b05c1cb3fe2266174000001, updated_at: nil, _id: nil, headline: "bar", subject_filter: nil, notification_emails: [], header: nil, custom_js: nil, version: nil, image_upload: true, text_count: 0, status: "pending", keywords: nil, submission_count: 0>
>> f.save
# => true
>> project.forms.size
# => 1
>> project.forms.include?(f)
# => false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment