technoweenie
technoweenie
I dont remember... I guess so there's always an initial versioned record? I can't believe anyone still uses this :)
Nope. I'm sure there's something out there.
You can add missing columns to non_versioned_columns, also in the documentation. Automatic column detection like you've described would be nice if someone has a patch.
Judging by the error message, something is nil that shouldn't be. Looks like the behavior of Tempfiles changed. Send me a pull request if you find a fix that works...
When someone submits a patch for it. I haven't had a chance to play with Rails 3.
er didnt mean to close
I don't use attachment_fu or rails3, so no.
I don't use the plugin anymore. If you submit a pull request with a working fix, I'll gladly apply it though.
Can you send a pull request, or make this change in a fork?
Does it work with just `File.open(temp_path, "rb")`? `#read` will read it all into memory, which you _do not_ want for large files. The S3Object#write method is designed to stream IO...