Question

I'm new in Ruby/Rails, so, my question: what is the perfect way to upload file and save filename in database with rails? Are there any Gem? Or maybe there are good build-in feature?

Was it helpful?

Solution

You can try Paperclip.It is most popular gem in rails community...

   https://github.com/thoughtbot/paperclip

these lines do the all stuff

   class User < ActiveRecord::Base
     has_attached_file :avatar, :styles => { :medium => "300x300>", :thumb => "100x100>" }
   end

Try it......

OTHER TIPS

Also try carrierwave, Ryan has a good screencast about this gem

Most people use the Paperclip Gem.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top