README.rdoc in uploader-0.2.8 vs README.rdoc in uploader-1.0.0

- old
+ new

@@ -1,10 +1,15 @@ = Uploader Uploader makes it easy to integrate multiple file uploads into your application using SWFUpload +== ----NOTES---- +SWFUpload hasn't been updated in a while. Uploader 0.2.8 has been updated with the latest beta version of SWFUpload but it appears to have errors in some instances. +Version 0.2.8 will be the last version to use swfupload. +We are currently working on a new upload gem that will use pupload + == Installation === Install the gem: sudo gem install uploader @@ -245,16 +250,16 @@ If you want to use a different model or several models just add a rake task to your project: desc 'Send all uploads to S3. (Will only send uploads from a model named Upload)' task :upload_to_s3 do - uploads = Upload.pending_s3_migration + uploads = Upload.pending_s3_migrations uploads.each do |upload| upload.remote = upload.local upload.save! end - photos = Photo.pending_s3_migration + photos = Photo.pending_s3_migrations photos.each do |photo| photo.remote = photo.local photo.save! end