method

exact_match_present?

exact_match_present?(source)
public

No documentation available.

# File actionpack/lib/sprockets/helpers/rails_helper.rb, line 173
        def exact_match_present?(source)
          pathname = asset_environment.resolve(source)
          pathname.to_s =~ /#{Regexp.escape(source)}\Z/
        rescue Sprockets::FileNotFound
          false
        end