I know named_scope has been changed to scope in rails 3.
How do I perform default_scope in rails 3, I've had a good google but found nothing for defaults scopes.
does anyone know if it is possible to do a double nested form for. so that i could upload images to a set from an article form.
e.g.
Article
has_many :image_sets
ImageSet
belongs_to :article
has_many :images
Image
belongs_to :image_set