Guest User

Untitled

a guest
Aug 4th, 2015
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. module PaperclipStorageOption
  2. module ClassMethods
  3. def options
  4. Rails.env.production? ? production_options : default_options
  5. end
  6.  
  7. private
  8.  
  9. def production_options
  10. {
  11. storage: :dropbox,
  12. dropbox_credentials: Rails.root.join("config/dropbox.yml")
  13. }
  14. end
  15.  
  16. def default_options
  17. {}
  18. end
  19. end
  20.  
  21. extend ClassMethods
  22. end
Add Comment
Please, Sign In to add comment