Flowdock
method

each_precompressed_filepath

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: FileHandler
each_precompressed_filepath(filepath) private

No documentation

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

Hide source
# File actionpack/lib/action_dispatch/middleware/static.rb, line 151
      def each_precompressed_filepath(filepath)
        @precompressed.each do |content_encoding|
          precompressed_ext = PRECOMPRESSED.fetch(content_encoding)
          yield content_encoding, "#{filepath}#{precompressed_ext}"
        end

        nil
      end
Register or log in to add new notes.