texpert/florsan

View on GitHub
app/services/no_compression.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class NoCompression
  def compress(string)
    # TODO: Remove this either when Sprockets compressor will work, or when removing Sprockets
    string
  end
end