Really simple way of handling media in a Carrierwave/Mongoid/GridFS setup
Go to file
2013-02-22 16:58:41 -05:00
app clean some things up and add a readme 2013-02-22 16:58:41 -05:00
lib clean some things up and add a readme 2013-02-22 16:58:41 -05:00
.gitignore initial commit 2012-10-10 20:45:35 -04:00
carrierwave-mongoid-media.gemspec clean some things up and add a readme 2013-02-22 16:58:41 -05:00
Gemfile initial commit 2012-10-10 20:45:35 -04:00
LICENSE.txt initial commit 2012-10-10 20:45:35 -04:00
Rakefile initial commit 2012-10-10 20:45:35 -04:00
README.md clean some things up and add a readme 2013-02-22 16:58:41 -05:00

Make it very easy to accept Carrierwave uploads to a Mongoid GridFS-backed data store and then deliver them.

Add this to your config/routes.rb:

My::Application.routes.draw do
  CarrierWave::Mongoid::Media.routes(self)
end

And you'll have a /media/*path route that just delivers whatever Carrierwave uploads to this app, as long as you're using carrierwave-mongoid to do the uploads. CarrierWave's grid_fs_access_url will be set correctly for you, too.

You can specify if any of the paths should respond with Content-Disposition: attachment headers with an initializer:

# config/initializers/carrierwave_mongoid_media.rb

CarrierwaveMongoidMedia.force_downloads_on do |path|
  # return true if the file should get Content-Disposition: attachment
end