Module: ActionView::Helpers::AssetUrlHelper
- Defined in:
- lib/cloudinary/helper.rb
Instance Method Summary collapse
Instance Method Details
#original_path_to_asset ⇒ Object
328 |
# File 'lib/cloudinary/helper.rb', line 328 alias :original_path_to_asset :path_to_asset |
#path_to_asset(source, options = {}) ⇒ Object
330 331 332 333 334 335 336 |
# File 'lib/cloudinary/helper.rb', line 330 def path_to_asset(source, ={}) ||= {} if Cloudinary.config.enhance_image_tag && [:type] == :image source = Cloudinary::Utils.cloudinary_url(source, .merge(:type=>:asset)) end original_path_to_asset(source, ) end |