Rails form_for that uses STI base class
Not sure if you found a solution already, but I am using the following for my forms
= form_for [@user, @post.becomes(Post)] do |f|
- f.object = @post.becomes @post.class
reference: http://thepugautomatic.com/2012/08/rails-sti-and-form-for/