Flowdock
method

resolve_image_source

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ActionView::Helpers::AssetTagHelper
resolve_image_source(source, skip_pipeline) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/helpers/asset_tag_helper.rb, line 450
        def resolve_image_source(source, skip_pipeline)
          if source.is_a?(Symbol) || source.is_a?(String)
            path_to_image(source, skip_pipeline: skip_pipeline)
          else
            polymorphic_url(source)
          end
        rescue NoMethodError => e
          raise ArgumentError, "Can't resolve image into URL: #{e}"
        end
Register or log in to add new notes.