method

rewrite_extension?

rails latest stable - Class: ActionView::Helpers::AssetTagHelper

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.0.9) is shown here.

rewrite_extension?(source, dir, ext)
private

No documentation available.

# File actionpack/lib/action_view/helpers/asset_tag_helper.rb, line 724
        def rewrite_extension?(source, dir, ext)
          source_ext = File.extname(source)[1..-1]
          ext && (source_ext.blank? || (ext != source_ext && File.exist?(File.join(config.assets_dir, dir, "#{source}.#{ext}"))))
        end