Module: CloudinaryHelper
- Defined in:
- app/helpers/cloudinary_helper.rb
Class Method Summary collapse
Class Method Details
.setup ⇒ Object
4 5 6 7 8 9 |
# File 'app/helpers/cloudinary_helper.rb', line 4 def self.setup Cloudinary.config do |config| # In production, use ENV['CLOUDINARY_URL'] config.secure = true end end |
.upload(file_path) ⇒ Object
11 12 13 |
# File 'app/helpers/cloudinary_helper.rb', line 11 def self.upload(file_path) Cloudinary::Uploader.upload(file_path) end |