diff options
author | James Miller <bensie@gmail.com> | 2011-07-05 08:40:09 -0700 |
---|---|---|
committer | James Miller <bensie@gmail.com> | 2011-07-05 08:40:09 -0700 |
commit | 9fec7981240bd04be955510990841652525d3de8 (patch) | |
tree | ba38b50ee68b832d7a8c3ac1876f60b1d5e90f27 /railties/guides | |
parent | 289b5253ce476410ff78a5f55248c5a4e6a60223 (diff) | |
download | rails-9fec7981240bd04be955510990841652525d3de8.tar.gz rails-9fec7981240bd04be955510990841652525d3de8.tar.bz2 rails-9fec7981240bd04be955510990841652525d3de8.zip |
Remove attachment_fu, add CarrierWave to suggested uploader libraries
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/form_helpers.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/form_helpers.textile b/railties/guides/source/form_helpers.textile index 4314d00f2e..9051ede9dd 100644 --- a/railties/guides/source/form_helpers.textile +++ b/railties/guides/source/form_helpers.textile @@ -589,7 +589,7 @@ def upload end </ruby> -Once a file has been uploaded, there are a multitude of potential tasks, ranging from where to store the files (on disk, Amazon S3, etc) and associating them with models to resizing image files and generating thumbnails. The intricacies of this are beyond the scope of this guide, but there are several plugins designed to assist with these. Two of the better known ones are "Attachment-Fu":https://github.com/technoweenie/attachment_fu and "Paperclip":http://www.thoughtbot.com/projects/paperclip. +Once a file has been uploaded, there are a multitude of potential tasks, ranging from where to store the files (on disk, Amazon S3, etc) and associating them with models to resizing image files and generating thumbnails. The intricacies of this are beyond the scope of this guide, but there are several libraries designed to assist with these. Two of the better known ones are "CarrierWave":https://github.com/jnicklas/carrierwave and "Paperclip":http://www.thoughtbot.com/projects/paperclip. NOTE: If the user has not selected a file the corresponding parameter will be an empty string. |