Module: ActionView::Helpers::AssetUrlHelper
- Defined in:
- lib/cloudinary/helper.rb
Instance Method Summary collapse
Instance Method Details
#original_path_to_asset ⇒ Object
320 |
# File 'lib/cloudinary/helper.rb', line 320 alias :original_path_to_asset :path_to_asset |
#path_to_asset(source, options = {}) ⇒ Object
322 323 324 325 326 327 328 |
# File 'lib/cloudinary/helper.rb', line 322 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 |