aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorPaul McMahon <paul@doorkeeper.jp>2018-07-26 16:15:34 +0900
committerPaul McMahon <paul@doorkeeper.jp>2018-07-26 16:15:34 +0900
commit978d486e4d3e79b062134830c908e1eebafe4f18 (patch)
tree58d017016a6f4afa8dba21a76ad552b7dda2d3a2 /guides
parent91fd679710118482f718ea710710561f1cfb0b70 (diff)
downloadrails-978d486e4d3e79b062134830c908e1eebafe4f18.tar.gz
rails-978d486e4d3e79b062134830c908e1eebafe4f18.tar.bz2
rails-978d486e4d3e79b062134830c908e1eebafe4f18.zip
Reference Active Storage instead of third-party libraries in guide
Paperclip has officially been deprecated, so we shouldn't mention it anymore. CarrierWave could still be referenced, as there are use cases where it currently makes more sense, but for simplicity, I thought removing the mention of third party libraries made sense. If we want to talk about them, listing "alternatives" within the Active Storage guide could make more sense.
Diffstat (limited to 'guides')
-rw-r--r--guides/source/form_helpers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/form_helpers.md b/guides/source/form_helpers.md
index e1dbe39137..a4f7e6f601 100644
--- a/guides/source/form_helpers.md
+++ b/guides/source/form_helpers.md
@@ -651,7 +651,7 @@ def upload
end
```
-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](https://github.com/thoughtbot/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. [Active Storage](https://guides.rubyonrails.org/active_storage_overview.html) is designed to assist with these tasks.
NOTE: If the user has not selected a file the corresponding parameter will be an empty string.